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!)
A096138 a(1) = 1, a(n) = digit reversal of n*a(n-1). 2
1, 2, 6, 42, 12, 27, 981, 8487, 38367, 76383, 312048, 6754473, 94180878, 2922358131, 56917353834, 443166776019, 3232915383357, 62400967429185, 5154511838165811, 22613367632090301, 123698372027088474, 8246495954814631272 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(10^n) is the digit reversal of a(10^n -1).
a(n) = A004086(A034874(n)). [Reinhard Zumkeller, Jan 02 2012]
LINKS
MATHEMATICA
nxt[{n_, a_}]:={n+1, FromDigits[Reverse[IntegerDigits[(1+n)*a]]]}; Transpose[ NestList[ nxt, {1, 1}, 30]][[2]] (* Harvey P. Dale, Dec 31 2013 *)
PROG
(Haskell)
a096138 n = a096138_list !! (n-1)
a096138_list = 1 : g 2 1 where
g x y = z : g (x + 1) z where z = a004086 (x * y)
-- Reinhard Zumkeller, Jan 02 2012
CROSSREFS
Sequence in context: A367603 A336281 A326268 * A004153 A071440 A280043
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Jul 07 2004
EXTENSIONS
Edited and extended by Klaus Brockhaus, Jul 09 2004
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)