I'm trying to prove, using strong induction, that $2^n$ divides $a_{n}$ where:
$$a_{n} = 2a_{n-1} + 4a_{n-2}$$
Given that $a_{1} = 2$ andn $a_{2} = 8$
What I've got so far:
Base Case $$n = 1$$ $$a_{1} = 2$$ $$2^{1} | 2$$
$$n = 2$$ $$a_{2} = 8$$ $$2^{2} | 8$$
Induction steps For some positive integer $k \geq 1$, assume that $2^k$ divides $a_{k} = 2a_{k+1} + 4a_{k-2}$ because $2^1$ divides $a_1$ and $2^2$ divides $a_2$.
We will prove that $2^{k+1}$ divides $a_{k+1}$
$$a_{k+1} = 2a_{(k+1)-1} + 4a_{(k+1)-2}$$
$$ = 2a_{k} + 4a_{k-1}$$
Assume: if $a$ divides $b$ and $a$ divides $c$, therefore $a$ divides $b+c$: $$2^{k} | a_{k} + 2a_{k-1}$$ $$2^{k} | 2a_{k-1}$$ $$2 \times 2^{k-1} | 2a_{k-1}$$ (which is equal to $4a_{k-1}$)
Therefore $2^{k-1} | a_{k-1}$.
I'm just looking for a little guidance. Does this make sense?
What you did was assume that $2^k$ divides $a_k$ and proved that $2^{k-1}$ divides $a_{k-1}$. What you should have done is assume that $2^k$ divides $a_k$ and prove that $2^{k+1}$ divides $a_{k+1}$.