I've wanted to code something. I decided to take up simulating the Fibonacci sequence. Except: I can't understand what I thought is a simple process.
I want to start at the very beginning which from what I see is $(0,1)$.
Well.
$0 + 1 = 1$. I get the sum of the first two numbers $(0 , 1)$ and then the answer (sum again?).
$1 + 1 = 2$...
Isn't the Fibonacci sequence suppose to be $1 , 1 , 2 , 3,$ etc?
I can't get those first two results and I notice that a lot of members are using some very scary symbols like $F_{k + 2} = F_k + F_{k +1}$. I don't understand how to move forward and I'm embarrassed to ask this in real life.
Can someone explain this without the symbols?
F[k+2] = F[k] + F[k+1]
, whereF
is an array of numbers andk
is an integer. – Jan 04 '17 at 03:21