OFFSET
1,2
COMMENTS
a(10^n) is the digit reversal of a(10^n -1).
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..250
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
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Jul 07 2004
EXTENSIONS
Edited and extended by Klaus Brockhaus, Jul 09 2004
STATUS
approved
