For simple recurrence relations like, $t_{n} = t_{n-1} + 3$ where $t_0$ is 1 gives the nth term $t_n = 3n + 1$ where $n\geq0$
Or $t_n = xt_{n-1}$ where $t_0 = a$ the nth term is $t_n = ax^n$ where $n\geq0$
how do any of these rules scale up to finding the nth term for more complicated relations like:
$t_n = n^2T_{n-1}$ where $n\geq0$
or a non-linear expressions like:
$t_n = \frac{n^3}{n+2}t_{n-1}$ where $n\geq0$