OFFSET
1,1
COMMENTS
The next term, a(8), has 228 digits. - Harvey P. Dale, Dec 18 2012
LINKS
Eric Weisstein's World of Mathematics, Tetrahedral Number.
FORMULA
a(n)= A000292(a(n-1)). - R. J. Mathar, Jun 09 2008
EXAMPLE
a(2) = Tet(2) = the 2nd tetrahedral number = 2*(2+1)*(2+2)/6 = 4;
a(3) = Tet(Tet(2)) = the 4th tetrahedral number = 4*(4+1)*(4+2)/6 = 20;
a(4) = Tet(Tet(Tet(2))) = the 20th tetrahedral number = 20*(20+1)*(20+2)/6 = 1540.
MATHEMATICA
NestList[(#(#+1)(#+2))/6&, 2, 6] (* Harvey P. Dale, Dec 18 2012 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Nov 15 2004
EXTENSIONS
Corrected and extended by R. J. Mathar, Jun 09 2008
STATUS
approved