login
A034879
a(n) = product of factorials of digits of a(n-1).
2
3, 6, 720, 10080, 40320, 288, 3251404800, 33443020800, 10032906240, 150493593600, 1179600089304268800000, 6494947622660923209343932825600000000, 817033558319976619871285124179533435912396304547840000000000000
OFFSET
1,1
COMMENTS
The next term has 110 digits. - Harvey P. Dale, Oct 17 2011
FORMULA
a(n+1) = A066459(a(n)), a(1) = 3. - Reinhard Zumkeller, Oct 11 2011
MATHEMATICA
NestList[Times@@(IntegerDigits[#]!)&, 3, 12] (* Harvey P. Dale, Oct 17 2011 *)
PROG
(Haskell)
a034879 n = a034879_list !! (n-1)
a034879_list = iterate a066459 3 -- Reinhard Zumkeller, Oct 11 2011
CROSSREFS
Sequence in context: A179267 A171928 A308259 * A113588 A071106 A157548
KEYWORD
nonn,base,nice
EXTENSIONS
a(13) from Harvey P. Dale, Oct 17 2011
STATUS
approved