CodeX wrote:It sounds like your looking for a closed expression way of calculating numbers in the Fibonacci sequence...
Sounds like a good idea. So the formula is:
Fn = (phi ^ n - psi ^ n )/ sqrt(5), where phi = (1+sqrt(5))/2 and psi = (1-sqrt(5))/2
Now to rewrite the equation:
Fn * sqrt(5) = phi ^ n - psi ^ n
log (Fn * sqrt(5)) = log(phi ^ n - psi ^ n)
log Fn + 1/2 log 5 = log(phi ^ n - psi ^ n)
My problem here is that there is no algebraic formula for the logarithm of a difference

I seem to be unable to get the pesky n away from the exponent, and that is exactly what you want to do if you don't want to multiply 150000000 times, is it not? Or am I missing something here? Any hint would be appreciated.