login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A300081 a(n) is the number of steps needed to reach 1 or 89 under iteration of sum-of-squares-of-digits map. 2
0, 5, 7, 4, 4, 9, 5, 5, 6, 1, 6, 5, 2, 6, 6, 3, 5, 5, 4, 5, 5, 6, 3, 6, 3, 5, 6, 3, 2, 7, 2, 3, 6, 4, 5, 8, 2, 3, 7, 4, 6, 6, 4, 4, 7, 4, 5, 6, 4, 4, 6, 3, 5, 7, 5, 4, 6, 1, 4, 9, 3, 5, 8, 4, 4, 7, 2, 2, 8, 5, 5, 6, 2, 5, 6, 2, 9, 8, 3, 5, 5, 3, 3, 6, 1, 2, 8, 10, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
By the definition, a(1) = a(89) = 0.
LINKS
Eric Weisstein's World of Mathematics, Happy Number
Eric Weisstein's World of Mathematics, Unhappy Number
Wikipedia, Happy number
EXAMPLE
n| 0 1 2 3 4 5 6 7 8 9
-----------------------------------------------------------
2| 2 -> 4 -> 16 -> 37 -> 58 -> 89.
3| 3 -> 9 -> 81 -> 65 -> 61 -> 37 -> 58 -> 89.
4| 4 -> 16 -> 37 -> 58 -> 89.
5| 5 -> 25 -> 29 -> 85 -> 89.
6| 6 -> 36 -> 45 -> 41 -> 17 -> 50 -> 25 -> 29 -> 85 -> 89.
PROG
(PARI) f(n) = {my(d = digits(n)); sum(k=1, #d, d[k]^2); }
a(n) = {my(nb = 0, fn = n); while (! ((n == 1) || (n == 89)), n = f(n); nb++); nb; } \\ Michel Marcus, Feb 25 2018
CROSSREFS
Sequence in context: A245655 A011497 A010488 * A293843 A240946 A343039
KEYWORD
nonn,base
AUTHOR
Seiichi Manyama, Feb 24 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 1 23:54 EDT 2024. Contains 372178 sequences. (Running on oeis4.)