I observed this awkward repetition while making a strategy for the game "odd-eve".
Can someone tell me why this happens?
Let a1 be the sum of digits of x in base 10.
Let an be the sum of digits of an−1 in base 10, for integers n>1.
Let g(x)=limn→∞an
I observed that:-
g(2)=2
g(4)=4
g(8)=8
g(16)=7
g(32)=5
g(64)=1
then
g(128)=2
g(256)=4
g(512)=8
g(1024)=7
g(2048)=5
g(4096)=1
and this pattern is repeating again and again.
g(8192)=2
g(16384)=4
and so on.........
So,
The pattern for powers of 2 is 2,4,8,7,5,1,2,4,8,7,5,1
and
The pattern for powers of 3 is 3,9,9,9,9,9,9,9,9,9,9,9
The pattern for powers of 4 is 4,7,1,4,7,1,4,7,1,4,7,1
The pattern for powers of 5 is 5,7,8,4,2,1,5,7,8,4,2,..
Why does it work?
Does it work for powers of all integers?
Does it work in all bases?
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
Hint: mod9, divisibility rule.
Log in to reply
Thanks so much!
I got it. The sum of digits mod 9 is same as the number mod 9.
And 2^n mod 9 is repeating every few terms.
One line. That beautiful number 9! +1