OFFSET
1,1
COMMENTS
Essentially the same as A060310. [From R. J. Mathar, Sep 08 2008]
REFERENCES
Hugo Steinhaus: Studentenfutter, Urania, Leipzig 1991, #1
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
EXAMPLE
a(3)=a(1)*a(2), a(4)=first digit of (a(2)*a(3)), a(5)=2nd digit of (a(2)*a(3)), a(6)=first digit of (a(3)*a(4)), a(7)=2nd digit of (a(3)*a(4))
PROG
(Haskell)
a093096 n = a093096_list !! (n-1)
a093096_list = f [3, 3] where
f (u : vs@(v : _)) = u : f (vs ++
if w < 10 then [w] else uncurry ((. return) . (:)) $ divMod w 10)
where w = u * v
-- Reinhard Zumkeller, Aug 13 2013
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Bodo Zinser, Mar 20 2004
STATUS
approved