The following are two exercises from "Guide to Abstract Algebra" by Carol Whitehead, 1988 first edition.
Prove by induction that the integer $u_n = 4^n + 6n -1$ is divisible by 9, for every $n \in \mathbb{Z}^+$.
Prove by induction that the integer $u_n = 7^n - 4^n$ is divisible by 3, for every $n \in \mathbb{Z}^+$.
I can do exercise 6, as follows:
We show the proposition is true for $n=1$. That is, $u_1 = 7^1 - 4^1 = 3$, which is divisible by 3.
Next we show that if the proposition is true for $n$, it is also true for $n+1$. We can do this by showing that $u_{n+1} - u_n$ is a multiple of 3.
$u_{n+1} - u_n = 7^{n+1} - 4^{n+1} - 7^n + 4^n = 7^n\cdot(7-1) - 4^n\cdot(4-1) = \textbf{3}\cdot2\cdot7^n - \textbf{3}\cdot4^n$, which is clearly divisible by 3.
Trying the same approach for the earlier exercise 5:
We show the proposition is true for $n=1$. That is, $u_1 = 4^1 + 6\cdot1 -1 = 9$, which is divisible by 9.
Next we show that if the proposition is true for $n$, it is also true for $n+1$. We can do this by showing that $u_{n+1} - u_n$ is a multiple of 9.
$u_{n+1} - u_n = 4^{n+1}+6(n+1)-1 - 4^n - 6 n + 1 = 3\cdot4^n + 6$.
Question: I can't see how $3\cdot4^n + 6$ is divisible by 9.
There are many questions on this site that ask for proofs of this same proposal but none actually take the solution in this direction, and don't answer the specific question asked above.