1. Base Case:
- Consider n=2.
- We need to find x such that 32∥f(x).
- Let x=1. Then f(1)=13+17=18.
- Clearly, 32∥18 since 18=32⋅2 and 33∤18.
- Also, 1≡0(mod3).
- Thus, the base case holds.
2. Inductive Step:
- Assume for some n≥2, there exists x≡0(mod3) such that 3n∥f(x).
- We need to find y≡0(mod3) such that 3n+1∥f(y).
3. **Constructing y:**
- Given 3n∥x3+17, we have x3+17=k⋅3n where k is not divisible by 3.
- Consider y=x+3n−1.
- Then, y3=(x+3n−1)3=x3+3⋅x2⋅3n−1+3⋅x⋅(3n−1)2+(3n−1)3.
- Simplifying modulo 3n+1:
y3≡x3+3⋅x2⋅3n−1(mod3n+1)
y3≡x3+3n⋅x2(mod3n+1)
- Since 3n∥x3+17, we have:
x3+17≡3n⋅k(mod3n+1)
- Therefore:
y3+17≡x3+3n⋅x2+17≡3n⋅k+3n⋅x2(mod3n+1)
y3+17≡3n(k+x2)(mod3n+1)
- Since k is not divisible by 3 and x≡0(mod3), k+x2 is not divisible by 3.
- Hence, 3n+1∥y3+17.
4. Conclusion:
- We have constructed y=x+3n−1 such that 3n+1∥f(y) and y≡0(mod3).
- By induction, for each n≥2, there exists x≡0(mod3) such that 3n∥f(x) but 3n+1∤f(x).
■