The question is:
Determine the numbers $a_n$ for $n \geq 0$ that satisfy the recurrence relation $a_{n+2} = 4a_{n+1} - 2a_n$ for $n\geq 0$. with Boundary conditions $a_0 = 0$ and $a_1 = 1$.
Now my base step would be to fill in the formula : $$ \begin{align} a_0 :a_2&=4a_1-2a_0 \\ &=4*1 -2*0 =4 \end{align} $$ So we assume it holds for $n = 0$, and thus for $k$. fill in $k+1$: $$ \begin{align} a_{k+3}&=4a_{k+2}-2a_{k+1}\\ \end{align} $$
Which doesnt really help me at all. How do I tackle this? AM I looking at this the wrong way?