login
A391165
Primitive cubic pyritohedral numbers: a(n) = 864*n^3 - 2484*n^2 + 2384*n - 763.
3
1, 981, 7361, 24325, 57057, 110741, 190561, 301701, 449345, 638677, 874881, 1163141, 1508641, 1916565, 2392097, 2940421, 3566721, 4276181, 5073985, 5965317, 6955361, 8049301, 9252321, 10569605, 12006337, 13567701, 15258881, 17085061, 19051425, 21163157
OFFSET
1,2
COMMENTS
These are figurate numbers produced in the construction of approximate pyritohedrons (dodecahedrons with irregular pentagonal faces) using points in a primitive cubic lattice. The dihedral angle along the long edges for such a pyritohedron is 2*arctan(2) = A197376.
The n-th term is expressed as a summation which takes (8n-7)^3 and adds 6 stacks - each layer the number of points. The stacks increase by 2 layers with unit increment in n, totaling 2n-2 layers. This corresponds to constructing a pyritohedron by taking a cube and placing a wedge on each of its 6 faces.
So, a(n) = (8*n-7)^3 + 6*Sum_{i=2..n} (6*n+2*i-9)*(8*i-15) + (6*n+2*i-9)*(8*i-11).
Using cubes (with edge lengths same as the lattice spacing) centered at these figurate points to construct such polyhedra is known as Haűy construction.
FORMULA
G.f.: x*(1 + 977*x + 3443*x^2 + 763*x^3)/(1 - x)^4.
E.g.f.: 763 + exp(x)*(864*x^3 + 108*x^2 + 764*x - 763). - Stefano Spezia, Dec 02 2025
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4).
a(n) = a(n-1) + 2592*n^2 - 7560*n + 5732.
a(n) = (8*n-7)^3 + 6*Sum_{i=2..n} (176*i^2 - 556*i + 450), by summing wedge gnomons.
MATHEMATICA
A391165[n_] := (108*n*(n - 2) + 109)*(8*n - 7); Array[A391165, 30] (* or *)
LinearRecurrence[{4, -6, 4, -1}, {1, 981, 7361, 24325}, 30] (* Paolo Xausa, Dec 10 2025 *)
CROSSREFS
Cf. A197376.
Other pyritohedral numbers: A391166, A391167.
Sequence in context: A128483 A056937 A251839 * A122472 A252402 A087907
KEYWORD
nonn,easy
AUTHOR
Derek Delk, Dec 01 2025
STATUS
approved