I would like to know how do I calculate following number:
How many times do I need to divide a specific number to get a number that is one point something ( 1.xxx ).
Example for better understanding:
$10 / 2 = 5$ ($n=1$)
$5 / 2 = 2.5$ ($n=2$)
$2.5 / 2 = $1.25 ($n=3$)
In this case, the answer would be $n=3$. But how do I calculate it let's say for $120000$?
Many thanks to all in advance.
George