Problem:
$f(n) = 10^n-(5+\sqrt{17})^n-(5-\sqrt{17})^n$ is a function which is valid for all integers $n\geq1$. Prove that $f(n)$ is always perfectly divisible by $2^{n+1}$.
My approach:
I have used the theory of recurrence relations and induction.
The general form of third order homogeneous recurrence relation is $$c_1a_n+c_2a_{n-1}+c_3a_{n-2}+c_4a_{n-3}=0$$
If we change $a_n$ to $x^n$, we get $$c_1x^n+c_2x^{n-1}+c_3x^{n-2}+c_4x^{n-3}=0$$
If we want to get the characteristic equation of it, the equation will be $c_1x^3+c_2x_2+c_3x+c_4=0$.
If we solve the equation, we will get three solutions $k_1$, $k_2$, $k_3$.
Then $a_n=Ak_1^n+Bk_2^n+Ck_3^n$ where $A$, $B$ and $C$ are constants according to the equation.
$$\begin{equation}\tag{i}a_n=Ak_1^n+Bk_2^n+Ck_3^n\end{equation}$$
Let $$\begin{equation}\tag{ii}a_n=10^n-(5+\sqrt{17})^n-(5-\sqrt{17})^n\end{equation}$$
If we compare $(\mathrm{i})$ and $(\mathrm{ii})$, we get $A=1$, $B=-1$, $C=-1$. If we calculate $k_1=10$, $k_2=5+\sqrt{17}$, $k_3=5-\sqrt{17}$
So, the polynomial will be (in terms of $b$) $$(b-10)[b-(5+\sqrt{17})][b-(5-\sqrt{17})]=0$$ or $b^3-20b^2+108b-80=0$.
If we multiply the equation by $b^{n-3}$ and replace $b^n$ by $a_n$, it will give the result of $$a_n=20a_{n-1}-108a_{n-2}+80a_{n-3}$$ or $$a_{n+1}=20a_{n}-108a_{n-1}+80a_{n-2}$$
We will use strong induction now.
Base case:
$2^{2+1}$ divides $f(2)$.
Induction step:
Suppose it is true for all the way up to $k+1$. Then, $2^{k+1} \mid a_n$, $2^{k} \mid a_{n-1}$ and $2^{k-1} \mid a_{n-2}$. Therefore $a_{n}=2^{k+1}m$, $a_{n-1}=2^{k}n$ and $a_{n-2}=2^{k-1}p$ where $m$, $n$ and $p$ are integers.
If we input the values of $a_{n}$, $a_{n-1}$, $a_{n-2}$ in $a_{n+1}=20a_{n}-108a_{n-1}+80a_{n-2}$, we will get $a_{n+1}=2^{k+2}(10m-27n+10p)$, and so $2^{k+2} \mid a_{n+1}$. Therefore $2^{n+1} \mid f(n)$ for all positive integers. $\square$
Conclusion: I don't like this proof because it includes recurrence relation.I don't want to solve it using recurrence relation. Feel free to help me.
Source: Problem 8, BDMO (Bangladesh Mathematical Olympiad) 2024, junior, national
solution-verificationquestion to be on topic you must specify precisely which step in the proof you question, and why so. This site is not meant to be used as a proof checking machine. It is not clear what you mean in your prior comment. – Bill Dubuque Aug 17 '24 at 08:07