A100010 a(0) = 2 and a(n) = f(a(n-1)) where f(n) = n^2*(3*n^2-4*n+2).
2, 24, 941184, 2354066797535483525627904
Offset: 0
Examples
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.
References
- H. S. M. Coxeter, Regular Polytopes, 3rd ed. New York: Dover, 1973.
Links
- Michel Marcus, Table of n, a(n) for n = 0..5
- Hyun Kwang Kim, On Regular Polytope Numbers, Proc. Amer. Math. Soc., 131 (2003), 65-75.
- Jonathan Vos Post, Table of Polytope Numbers, Sorted, Through 1,000,000.
Programs
-
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
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)).
Extensions
New name from Joerg Arndt, Feb 23 2022
Comments