Given $(a_{n})_{n \in \mathbb{N}}$,
$a_{0} = 2, a_{1} = 4, a_{n+2} = 4a_{n+1} - 3a_{n}$,
is there any way to find the general term? I reckoned that every $a_{i}$ is a factor of 2, and then the series becomes 1, 2, 5, 14, 41, ..., and obviously that's $a_{i} = 3(a_{i-1}) - 1$ (if $i≠0$) but even then I just can't get rid of these damn recursive clauses.
Any help? Is there some way to tackle this kind of problems?
Yes, there is. Usually, you try a particular form of solution - $a_n=A\cdot p^n$ where $A$ and $p$ are constants. You can determine which values $p$ can take from the difference equation, and you can work out the corresponding values of $A$ with the initial conditions. Since this is a second order equation, you should get $$a_n=A_1 {p_1}^n+A_2{p_2}^n$$ for some specific numbers $A_1,A_2,p_1,p_2$.