✔ 最佳答案
Note: This result is true for all non-negative integers n.
Working mod 3:
4^n + 5 = 1^n + 2 = 1 + 2 = 0 (mod 3).
Hence 4^n + 5 is divisible by 3 for any integer n.
----------------------------
Here's an inductive proof.
Base case (n = 0)
4^0 + 5 = 6, which is divisible by 3.
Inductive Step
Assuming that 3|(4^k + 5):
4^(k+1)+ 5
= 4 * 4^k + 5
= (3 + 1) * 4^k + 5
= 3 * 4^k + (4^k + 5).
Since 3| (3 * 4^k) clearly and 3|(4^k + 5) by inductive hypothesis, it follows that 3|(3 * 4^k + (4^k + 5)).
This completes the inductive step and the proof.
I hope this helps!