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!)
A066713 RATS(2^n): Reverse Add the digits of 2^n, Then Sort: a(n) = A036839(2^n). 2
2, 4, 8, 16, 77, 55, 11, 499, 89, 277, 2255, 145, 11, 1111, 44567, 111499, 12299, 1234, 3467, 113467, 677789, 144556, 1222889, 14445667, 4577789, 55669999, 1134899, 11356999, 12237899, 445557799, 1223555555, 11113366, 1122222266 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
A114611(a(n)) = 0, as A114611(A000079(n)) = 0. - Reinhard Zumkeller, Mar 14 2012
LINKS
Eric Weisstein's World of Mathematics, RATS Sequence
PROG
(Haskell)
a066713 = a036839 . (2 ^) -- Reinhard Zumkeller, Mar 14 2012
(Python)
def A066713(n):
m = 2**n
return int(''.join(sorted(str(m+int(str(m)[::-1]))))) # Chai Wah Wu, Feb 07 2020
CROSSREFS
See A004000, A036839 for more information.
Sequence in context: A013133 A012997 A013184 * A004000 A051300 A001127
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, Jan 19 2002
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 April 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)