I have been trying to solve this problem, but I have not been able to figure it out using any simple techniques. Would someone give me the ropes please?
Prove for $n=1$
$7^3 + 5^4 = 968 = 44(22)$
Assume $F(k)$ is true and try $F(k+1)+-F(k)$
$F(k) = 7^{2k+1} + 5^{k+3}$
$F(k+1) = 7^{2k+3} + 5^{k+4}$
$49*7^{2k+1} + 5*5^{k+3} +- [7^{2k+1} + 5^{k+3}]$
Neither addition nor subtraction gives us a chance to take $44$ in front of the bracket, the best approach it has come to my mind is to subtract $F(k)$ which gives us:
$4[12*7^{2k+1} + 5^{5+3}]$
And now we need to prove that the inside is divisible by $11$. I have not been able to do so.
Basis
Satisfies for $n=0$($44\Big|132$)
Induction hypothesis
$\exists m\in \mathbb N $ such that $7^{2k+1}+5^{k+3}=44m$
Inductive step
$$7^{2k+3}+5^{k+4} =49(7^{2k+1})+5(5^{k+3})$$
$$=49(44m-5^{k+3})+5(5^{k+3})$$
$$=44(49m-5^{k+3})$$
which is clearly divisible by $44$.
Hope it helps:)