1
0
www.mikescher.com/www/statics/euler/Euler_Problem-092_description.md

14 lines
487 B
Markdown
Raw Normal View History

2017-11-08 17:39:50 +01:00
A number chain is created by continuously adding the square of the digits in a number to
form a new number until it has been seen before.
For example,
2019-05-27 23:10:30 +02:00
~~~
44 -> 32 -> 13 -> 10 -> 1 -> 1
85 -> 89 -> 145 -> 42 -> 20 -> 4 -> 16 -> 37 -> 58 -> 89
~~~
2017-11-08 17:39:50 +01:00
Therefore any chain that arrives at 1 or 89 will become stuck in an endless loop.
What is most amazing is that EVERY starting number will eventually arrive at 1 or 89.
How many starting numbers below ten million will arrive at 89?