[go: up one dir, main page]

login
A099179
Iterated tetrahedral numbers.
5
2, 4, 20, 1540, 609896980, 37811003218473324699257860, 9009555207802177724984164589516456320805205201729086740415363658290866918420
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
Sequence in context: A325503 A087314 A326972 * A102049 A058522 A292534
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Nov 15 2004
EXTENSIONS
Corrected and extended by R. J. Mathar, Jun 09 2008
STATUS
approved