login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A100010 a(0) = 2 and a(n) = f(a(n-1)) where f(n) = n^2*(3*n^2-4*n+2). 1
2, 24, 941184, 2354066797535483525627904 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Previous name was: Iterated hyperdiamond numbers, starting with 24-cell(2) = 24. Hyperdiamond numbers, figurate numbers based on the 4-dimensional 24-cell, have the formula 24-cell(n) = n^2*(3*n^2-4*n+2). This sequence is the hyperdiamond number of the hyperdiamond number of ... of 2.
The next term has 98 digits.
This need not start at 24-cell(2) = 24. For example, starting at a(0) = 3, which is not a hyperdiamond number, we have a(1) = 24-cell(3) = 3^2*((3*3^2)-(4*3)+2) = 153; and a(2) = 24-cell(24-cell(3)) = 24-cell(153) = 153^2*((3*153^2)-(4*153)+2) = 1629664353; and a(3) = 24-cell(24-cell(24-cell(3))) = 24-cell(1629664353) = 21159914972910583843562449776792301953.
REFERENCES
H. S. M. Coxeter, Regular Polytopes, 3rd ed. New York: Dover, 1973.
LINKS
Hyun Kwang Kim, On Regular Polytope Numbers, Proc. Amer. Math. Soc., 131 (2003), 65-75.
FORMULA
a(0) = 2; hyperdiamond numbers, figurate numbers based on the 4-dimensional 24-cell, have the formula 24-cell(n) = n^2*(3*n^2-4*n+2). a(1) = 24-cell(2) = 24. a(2) = 24-cell(24-cell(2)) = 941184. For k>1, a(k+1) = 24-cell(a(k)).
EXAMPLE
a(0) = 2 is the seed for this instance of the more general recurrence;
a(1) = 24-cell(2) = 2^2*(3*2^2-4*2+2) = 24;
a(2) = 24-cell(24-cell(2)) = 24-cell(24) = 24^2*(3*24^2-4*24+2) = 941184.
PROG
(PARI) f(n) = n^2*(3*n^2-4*n+2); \\ A092181
a(n) = if (n==0, 2, f(a(n-1))); \\ Michel Marcus, Dec 14 2015
CROSSREFS
Sequence in context: A100815 A365617 A159932 * A319761 A045510 A226325
KEYWORD
easy,nonn,changed
AUTHOR
Jonathan Vos Post, Nov 16 2004
EXTENSIONS
New name from Joerg Arndt, Feb 23 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 6 21:39 EDT 2024. Contains 375728 sequences. (Running on oeis4.)