A Fibonacci sequence is a Jacobi sequence that always starts with 1 and 1. So you don't need those arguments 'a' and 'b'. Just 'n'.
In any case, you should notice that to solve F(n-1) and F(n-2), both must solve F(n-3). You can see that each recurrence explodes like a mushroom cloud -- it's exponential.
Look at the pattern for each time you unravel the recurrence equation. How many term are there each time? Can you think of a mathematical operation that models that? (Hint, ignore constant terms.)