I need to find an explicit formula for the following sequence:
$$ a_0=1,\quad a_1=2,\quad a_n=2a_{n-1}+a_{n-2},\ \hbox{for}\ n\ge2 $$ I tried using the characteristic sequence and elimination method which brought me to $a_n = 0.855(2.41^n) - 0.145(0.41^n)$ and an incorrect answer. Is there a different way to solve this problem?
Any help is appreciated.
One mistake that you've done is this: the characteristic equation has solutions $1 \pm \sqrt{2}$, which is approximately $2.414$ and $-0.414$. That means that the general solution to the recurrence relation is given by $$ A_n = c_1\cdot 2.414^n + c_2\cdot (-0.414)^n $$ where those brackets are essential. You don't have those, and I suspect that that's why you've gotten the wrong answer.
Another source of mistakes might be that you have rounded the results. I would personally prefer to keep it as $$ A_n = c_1\cdot (1+\sqrt2)^n + c_2\cdot (1-\sqrt2)^n $$ mostly because it makes the following calculations easier, and the resulting expression is more pleasing to the eye.