The Fibonacci sequence is given recursively by Fo= 0, F₁ = 1, Fn = Fn-1 + Fn-2. a. Find the first 10 terms of the Fibonacci sequence. b. Find a recursive form for the sequence 2,4,6,10,16,26,42,... C. Find a recursive form for the sequence 5,6,11,17,28,45,73,... d. Find the initial terms of the recursive sequence ...,0,0,0,0,... where the recursive formula is ZnZn-1 + Zn-2.