Prove that $5^{2n+1}2^{n+2}+3^{n+2}2^{2n+1}=19k$ for all $n$ natural numbers. I have tried writing 19 as a sum of two numbers and then proving that the LHS is a sum of the form $Ax+By=(A+B)k$but I couldn't manage to set $x=y=k$.
-
2It's not true for $n=1$ (the expression is equal $1108$, which is not divisible by $19$)!!! – barak manos Jul 06 '16 at 14:29
-
If $n=2$ the left hand is $50,648$ which is $13\pmod {19}$. – lulu Jul 06 '16 at 14:31
-
Really sorry, edited now. – bonehead Jul 06 '16 at 14:33
-
See here for a proof by induction. – Dietrich Burde Jul 06 '16 at 14:35
-
This is a different expression @DietrichBurde . – bonehead Jul 06 '16 at 14:36
-
It is a different expression, but with the same idea for the solution. Compare also with this question. – Dietrich Burde Jul 06 '16 at 14:38
-
Since $x=2,3,5$ are relatively prime to $19$ we know that $x^{18}\equiv 1 \pmod {19}$. Hence you only have to check this for $n=0,1,\cdots, 17$. Since you are just working $\pmod {19}$ the calculation is pretty easy. – lulu Jul 06 '16 at 14:40
5 Answers
Hint: For the inductive step, observe that
$5^{2n+3}\cdot 2^{n+3}+3^{n+3}\cdot 2^{2n+3}=50(5^{2n+1}\cdot 2^{n+2})+12(3^{n+2}\cdot2^{2n+1})$

- 40,402
First, show that this is true for $n=1$:
$5^{2+1}\cdot2^{1+2}+3^{1+2}\cdot2^{2+1}=19\cdot64$
Second, assume that this is true for $n$:
$5^{2n+1}\cdot2^{n+2}+3^{n+2}\cdot2^{2n+1}=19k$
Third, prove that this is true for $n+1$:
$5^{2(n+1)+1}\cdot2^{(n+1)+2}+3^{(n+1)+2}\cdot2^{2(n+1)+1}=$
$50\cdot(\color\red{5^{2n+1}\cdot2^{n+2}+3^{n+2}\cdot2^{2n+1}})-38\cdot3^{n+2}\cdot2^{2n+1}=$
$50\cdot\color\red{19k}-38\cdot3^{n+2}\cdot2^{2n+1}=$
$19\cdot50k-38\cdot3^{n+2}\cdot2^{2n+1}=$
$19\cdot50k-19\cdot3^{n+2}\cdot2^{2n+2}=$
$19\cdot(50k-3^{n+2}\cdot2^{2n+2})$
Please note that the assumption is used only in the part marked red.

- 43,109
We have $$f(n)=20\cdot50^n+18\cdot12^n$$
Things become easier to manage if we can eliminate $50^n$ or $12^n$
$$f(m+1)-12f(m)=20\cdot50^m(50-12)$$ which is divisible by $19$
$\implies$
$$19|f(m+1)\iff19|f(m)$$
Now establish the base case i.e., for $n=1$
If induction is not mandatory,
$$20\cdot50^n+18\cdot12^n\equiv50^n-12^n$$ which is divisble by $50-12$ using Why $a^n - b^n$ is divisible by $a-b$?

- 274,582
$$5^{2n+1} 2^{n+2} + 3^{n+2}2^{2n+1} = 20 \cdot 50^n + 18 \cdot 12^n = (19+1)(38+12)^n + (19-1) 12^n = 19k + 12^n -12^n$$ for all $n\geq 0$.
For a more general result: Suppose $a$, $b$ and $x\neq y$ are integers and $z_n = a \cdot x^n + b \cdot y^n$. Then $z_{n+2} = (x+y) z_{n+1} - xy z_{n}$ for all $n \geq 0$. Hence $z_n$ is divisible by a fixed nonzero integer $m$ for all $n$ if and only if $z_0$ and $z_1$ are divisible by $m$.

- 6,187
$\begin{align}{\rm Hint\!:\ multiplying}\ \ \ 5^{\large 2n+1} 2^{\large n+2} &\equiv - 3^{\large n+2} 2^{\large 2n+1}\!\!\!\!\pmod{\!19}\\ {\rm by}\quad\ \ 5^{\large 2}\cdot 2\quad\ \ \ &\equiv\quad\ \ 3\cdot 2^{\large 2}\ \ \ \ \pmod{\!19}\end{align}\ \ $ yields the inductive step

- 272,048