|
Search: id:A033865
|
|
|
| A033865 |
|
Start with n; if palindrome, stop; otherwise add to itself with digits reversed; a(n) gives palindrome at which it stops, or -1 if no palindrome is ever reached. |
|
+0 41
|
|
| 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 11, 33, 44, 55, 66, 77, 88, 99, 121, 22, 33, 22, 55, 66, 77, 88, 99, 121, 121, 33, 44, 55, 33, 77, 88, 99, 121, 121, 363, 44, 55, 66, 77, 44, 99, 121, 121, 363, 484, 55, 66, 77, 88, 99, 55, 121, 363, 484, 1111, 66, 77, 88, 99, 121, 121, 66, 484, 1111, 4884, 77, 88, 99, 121, 121, 363, 484, 77, 4884, 44044, 88
(list; graph; listen)
|
|
|
OFFSET
|
0,3
|
|
|
REFERENCES
|
M. Donner, I Love Me, Vol. I: S. Wordrow's palindromic encyclopedia (Algonquin Books, 1996) p. 268
|
|
LINKS
|
T. D. Noe, Table of n, a(n) for n=0..195
O. Forster, ARIBAS
Mathforum, Making Numbers into Palindromic Numbers
Eric Weisstein's World of Mathematics, Link to a section of The World of Mathematics.
|
|
EXAMPLE
|
19 -> 19 + 91 = 110 -> 110 + 011 = 121, so a(19) = 121.
|
|
PROGRAM
|
(ARIBAS): var st: stack; end; for k := 0 to 60 do n := k; while n <> int_reverse(n) do n := n + int_reverse(n); end; stack_push(st, n); end; stack2array(st).
|
|
CROSSREFS
|
Cf. A061563, A016016, A023109, A006960, A023108, A002113.
Sequence in context: A033862 A082273 A045876 this_sequence A118764 A057717 A063742
Adjacent sequences: A033862 A033863 A033864 this_sequence A033866 A033867 A033868
|
|
KEYWORD
|
nonn,base,nice
|
|
AUTHOR
|
David W. Wilson (davidwwilson(AT)comcast.net)
|
|
EXTENSIONS
|
Probably a(196) = -1.
More terms from Jenise Smalley (neicey01(AT)hotmail.com), Oct 18 2001
|
|
|
Search completed in 0.002 seconds
|