OFFSET
0,3
COMMENTS
Number of unit complete 16-cells contained in an n-scale 16-cell composed of a 16-cell honeycomb. The number of halved 16-cells in it is 8*(n^3-n)/3 = A102860(n+1).
Assume that the n-scale 16-cell has vertices (+-n,0,0,0), (0,+-n,0,0), (0,0,+-n,0), (0,0,0,+-n), and is divided by 8 sets of parallel hyperplanes x_1+-x_2+-x_3+-x_4 = -(n-2),-(n-4),...,n-4,n-2. Then the unit complete 16-cells can be described to have centers in the following two groups:
(i) {(x_1,x_2,x_3,x_4) : x_i in Z, Sum |x_i| <= n-1, Sum x_i !== n (mod 2)};
(ii) {(x_1,x_2,x_3,x_4) : x_i in Z+1/2, Sum |x_i| <= n-1}.
The numbers of 16-cells in the two groups are respectively n^2*(n^2+2)/3 = A014820(n+1) and 2*(n+1)*n*(n-1)*(n-2)/3.
E.g.: for n = 2, a 2-scale 16-cell composed of a 16-cell honeycomb has 8 complete 16-cells centered at the permutations of (+-1,0,0,0), and 16 halved 16-cells centered at (+-1/2,+-1/2,+-1/2,+-1/2).
For n = 3, a 3-scale 16-cell composed of a 16-cell honeycomb has 49 complete 16-cells centered at (0,0,0,0), the permutations of (+-2,0,0,0), the permutations of (+-1,+-1,0,0), or (+-1/2,+-1/2,+-1/2,+-1/2), and 64 halved 16-cells centered at the permutations of (+-3/2,+-1/2,+-1/2,+-1/2).
LINKS
Jianing Song, Table of n, a(n) for n = 0..10000
Wikipedia, 16-cell honeycomb
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
a(n) = n*(3*n^3-4*n^2+4)/3.
G.f.: x*(1+3*x+19*x^2+x^3)/(1-x)^5.
E.g.f.: x*(3+9*x+14*x^2+3*x^3)*exp(x)/3.
EXAMPLE
For n = 3, among the 49 complete 16-cells,
- 1 has vertices (0,0,0,0) + {(+-1,0,0,0),(0,+-1,0,0),(0,0,+-1,0),(0,0,0,+-1)};
- 8 have vertices (+-2,0,0,0) and the permutations + {(+-1,0,0,0),(0,+-1,0,0),(0,0,+-1,0),(0,0,0,+-1)};
- 24 have vertices (+-1,+-1,0,0) and the permutations + {(+-1,0,0,0),(0,+-1,0,0),(0,0,+-1,0),(0,0,0,+-1)};
- 16 have vertices {(x_1,0,0,0),(0,x_2,0,0),(0,0,x_3,0),(0,0,0,x_4),(0,x_2,x_3,x_4),(x_1,0,x_3,x_4),(x_1,x_2,0,x_4),(x_1,x_2,x_3,0)}, where each x_i can be chosen from +1 or -1.
MATHEMATICA
a[n_]:=n^4-4(n^3-n)/3; Array[a, 41, 0] (* or *) LinearRecurrence[{5, -10, 10, -5, 1}, {0, 1, 8, 49, 176}, 41] (* or *) CoefficientList[Series[x*(1+3*x+19*x^2+x^3)/(1-x)^5, {x, 0, 40}], x] (* James C. McMahon, Oct 27 2025 *)
PROG
(PARI) a(n) = n^4 - 4*(n^3-n)/3
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Jianing Song, Oct 23 2025
STATUS
approved
