Wow, almost missed this one, here is my take on it as I promised before...
Fib#:
1. Mathematically:
Definition :
F(0) = 0,
F(1) = 1,
F(n) = F(n-2) + F(n-1) while n>=2. Looks like this:
0,1,1,2,3,5,8,13, 21,34, 55, 89â¦
Fib Ratio: F(n)/ F(n+1). Looks like this...