Michael K. answered 03/25/21
PhD professional for Math, Physics, and CS Tutoring and Martial Arts
Let's look at how the coefficients evolve to determine the recursive rule...
These are seed values for the recursive rule...
a --> 1, 0
b --> 0, 1
a+b --> 1, 1
a+2b --> 1, 2
2a+3b --> 2, 3
3a+5b --> 3, 5
We see the sequence for 'a' appears to follow the fibonacci sequence an = an-1 + an-2 as does the 'b' sequence but it is shifted ahead by one...
The fibonacci sequence has 0,1,1,2,3,5,8,13,21,...
Let the fibonacci numbers be defined as Fn = Fn-1 + Fn-2 (This is the standard form for recursive calculating the nth number).
Fn-1 * a + Fn * b for any value of n ≥ 1