Given $T(1) = a$ and $T(2) = b$, solve for $T(n)= T(n-1)\cdot T(n-2)$
[For the sake of clarity,that is $T(n-1)$ multiplied by $T(n-2)$ ]
It was asked in one of the entrance tests for a PHD program. I have seen some websites in which they state this type of problem to be Non-Linear Recurrence,but they do not state how to solve such problem.