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!)
A004093 Even numbers written backwards. 5
0, 2, 4, 6, 8, 1, 21, 41, 61, 81, 2, 22, 42, 62, 82, 3, 23, 43, 63, 83, 4, 24, 44, 64, 84, 5, 25, 45, 65, 85, 6, 26, 46, 66, 86, 7, 27, 47, 67, 87, 8, 28, 48, 68, 88, 9, 29, 49, 69, 89, 1, 201, 401, 601, 801, 11, 211, 411, 611, 811, 21, 221, 421, 621, 821, 31 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A004086(2*n). - Reinhard Zumkeller, Feb 09 2012
PROG
(Haskell)
a004093 = a004086 . (* 2) -- Reinhard Zumkeller, Feb 09 2012
(PARI) a(n) = fromdigits(Vecrev(digits(2*n))); \\ Michel Marcus, Nov 14 2022
(Python)
def a(n): return int(str(2*n)[::-1])
print([a(n) for n in range(66)]) # Michael S. Branicky, Nov 14 2022
CROSSREFS
Cf. A004086.
Sequence in context: A169910 A004519 A036839 * A106202 A351330 A220102
KEYWORD
nonn,base,look
AUTHOR
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 20 00:03 EDT 2024. Contains 371798 sequences. (Running on oeis4.)