The following formula has been provided:
$a(n) = a(n-1) + a(n-2)\quad \mbox{with initial states}\quad 0 , 2 $
After some research the formula is found to be a Binet's Formula.
It is required to convert the above recursive formula to an explicit formula using the Backtracking method.
This is what i have done: \begin{align} a(n) &= a(n-1) + a(n-2) = (a(n-2) + a(n-3)) + a(n-2) \\ & = 2a(n-2) + a(n-3) = 2(a(n-3) + a(n-4)) + a(n-3) \\ & = 3a(n-3) + 2a(n-4) = 3(a(n-4) + a(n-5)) + 2a(n-4) \\ & = 5a(n-4) + 3a(n-5) = 5(a(n-5) + a(n-6)) + 3a(n-5) \\ & = 8a(n-5) + 5a(n-6) \\ & \vdots \\ & \mbox{and so on}\ldots \end{align}
As it can be seen, there is a relationship with Pascal triangle.
Hint: It looks like $a(n) = b(k)a(n-k)+b(n-1)a(n-k-1) $ for some sequence $b(k)$. Find the recurrence satisfied by $b(k)$.
Then set $k=n-1$.