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

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A193566 Unhappy numbers which enter the cycle (4, 16, 37, 58, 89, 145, 42, 20) at 16 0
15, 16, 26, 40, 51, 62, 69, 88, 96, 105, 117, 128, 134, 143, 150, 155, 156, 165, 171, 182, 206, 218, 237, 247, 260, 273, 274, 278, 279, 281, 287, 297, 314, 327, 341, 372, 399, 400, 413, 427, 431, 448, 458, 466, 472, 484, 485, 501, 510, 515, 516, 548, 551 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Weisstein, Eric E.: MathWorld -- Unhappy Number.
EXAMPLE
466 is such a number of height 8 because it enters the cycle at 16 in 8 steps: 466 -> 88 -> 128 -> 69 -> 117 -> 51 -> 26 -> 40 -> 16 -> 37 -> 58 -> 89 -> 145 -> 42 -> 20 -> 4 -> 16 -> ...
MAPLE
S:=proc(n) local Q, k, N, z; Q:=[n]; for k from 1 do N:=convert(Q[k], base, 10); z:=sum(N['i']^2, 'i'=1..nops(N)); if not member(z, Q) then Q:=[op(Q), z]; else Q:=[op(Q), z]; break; fi; od; return Q; end:
a:=[]: for i from 1 while nops(a)<30 do Q:=S(i); A:=Q[nops(Q)]; if A=16 then a:=[op(a), i] fi; od: print(op(a));
CROSSREFS
Sequence in context: A160661 A342941 A046417 * A079832 A037971 A022105
KEYWORD
nonn,base
AUTHOR
Martin Renner, Jul 31 2011
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 December 7 02:20 EST 2023. Contains 367622 sequences. (Running on oeis4.)