How can you transform this recursive formluar into a linear recurrence (in order to get a closed formular and calculate a (closed) function)?
$t(n) = 2 * \frac{(t(n-1))^3}{(t(n-2))^2}$
and $t(0) = t(1) = 2$
I would know how to countine if I had a linear recursive formular, but unfortunately the fraction makes things quite a bit tricky.
Hint: Use logarithms to transform the relation into an additive one.
Indeed, let $u(n)=\log t(n)$. Then $$ u(n)= \log 2 + 3 u(n-1) - 2 u(n-2), \qquad u(0)=u(1)= \log 2 $$ This is a linear recurrence that can be solved using standard techniques.