Demonstrate by induction: $3^{2n} + 7 = 4k$ is true, for any $n\in \mathbb N$. I need to demonstrate this using the induction principle.
So far I have:
$n = 1$
$$3^{2\cdot 1} + 7 = 4\cdot k $$ $$9 + 7 = 4k$$ $$16 = 4k$$ $$k = 4$$
So it checks for $n=1$.
$n = h$
$$3^{2\cdot h} + 7 = 4\cdot k$$
$n = h +1$
$$3^{2\cdot (h + 1)} + 7 = 4\cdot k'$$
(I use $k'$ to note that it's not the same $k$ as in $n = h$)
And I don't know how to continue.