1. Base Case:
For n=2, we need to check if 11+33 is a multiple of 22=4 but not a multiple of 23=8.
11+33=1+27=28
Clearly, 28 is divisible by 4 but not by 8. Thus, the base case holds.
2. Inductive Step:
Assume the statement is true for n−1, i.e.,
11+33+⋯+(2n−1−1)2n−1−1≡2n−1(mod2n)
We need to show that:
11+33+⋯+(2n−1)2n−1≡2n(mod2n+1)
3. Analyzing the New Term:
Consider the term (2n−1)2n−1. For any odd x, we have:
ν2(x2n−1−1)=ν2(x2−1)+ν2(2n−2)
Since x is odd, x2−1 is divisible by 4, so:
ν2(x2−1)≥2
And:
ν2(2n−2)=n−2
Thus:
ν2(x2n−1−1)≥2+(n−2)=n
Therefore, x2n−1≡1(mod2n).
4. Combining Terms:
Consider the sum:
11+33+⋯+(2n−1)2n−1
By the inductive hypothesis:
11+33+⋯+(2n−1−1)2n−1−1≡2n−1(mod2n)
Adding the new term:
(2n−1)2n−1≡1(mod2n)
So:
11+33+⋯+(2n−1)2n−1≡2n−1+1(mod2n)
5. **Modulo 2n+1:**
We need to show that the sum is 2n(mod2n+1). Since:
2n−1+1≡2n(mod2n+1)
This completes the inductive step.
■