A friend of mine posed this question to me a couple days ago and it's been bugging me ever since. He told me to take the square root of 5 twenty times, subtract 1 from it, and then multiply it by 2^20, giving me a rough approximation of ln (5). I can't for the life of my figure out why this is.
Also: How can you find the natural log of any positive number X using only arithmetic operations (+, x, -, /) and square root?
Let $a$ be a positive real number.
Then $$\lim_{n\to\infty}(a^\frac1n-1)\cdot n=\lim_{n\to\infty}\frac{a^{\frac1n}-1}{\frac1n}=\lim_{n\to\infty} \frac{a^\frac1n\cdot\ln a\cdot\frac{-1}{n^2}}{\frac{-1}{n^2}}=\ln a$$
Your result is a special case of this with $a=5$, and $n=2^{20}$