OFFSET
0,2
COMMENTS
This approximation is used to determine the number of generations of Fibonacci rabbits required to get back to the start: this is set for 25 generations at a starting population of 500,000 rabbits.
FORMULA
a(n) = Floor[a(n-1)*(-1/2+Sqrt[5])/2]
MATHEMATICA
f[0] = 500000; f[n_] := f[n] = Floor[f[n - 1]*(-1/2 + Sqrt[5]/2)] a = Table[f[n], {n, 25, 1, -1}]
CROSSREFS
KEYWORD
nonn,uned,obsc,less
AUTHOR
Roger L. Bagula, Mar 16 2006
STATUS
approved