login
A391167
Face-centered cubic pyritohedral numbers: a(n) = 3456*n^3 - 8424*n^2 + 6848*n - 1854.
3
26, 5794, 36186, 111938, 253786, 482466, 818714, 1283266, 1896858, 2680226, 3654106, 4839234, 6256346, 7926178, 9869466, 12106946, 14659354, 17547426, 20791898, 24413506, 28432986, 32871074, 37748506, 43086018, 48904346, 55224226, 62066394, 69451586, 77400538, 85933986
OFFSET
1,1
COMMENTS
These are figurate numbers produced in the construction of approximate pyritohedrons (dodecahedrons with irregular pentagonal faces) using points in a face-centered 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 the (8*n-6)-th thickened cube number (A050492) and adds 6 stacks - each layer the number of points. The stacks increase by 4 layers with unit increment in n, totaling 4*n-3 layers. This corresponds to constructing a pyritohedron by taking a cube and placing a wedge on each of its 6 faces.
So, a(n) = A050492(8*n-6) + 6*(6*n - 4 + Sum_{i=2..n} [(6*n+2*i-8)*(8*i-14) + (6*n+2*i-9)*(8*i-13)] + [(6*n+2*i-7)*(8*i-12)+(6*n+2*i-8)*(8*i-11)] + [(6*n+2*i-8)*(8*i-10)+(6*n+2*i-7)*(8*i-9)] + [(6*n+2*i-7)*(8*i-8)+(6*n+2*i-6)*(8*i-7)]).
FORMULA
G.f.: 2*x*(927*x^3 + 6583*x^2 + 2845*x + 13)/(1 - x)^4.
E.g.f.: 2*(927 + exp(x)*(1728*x^3 + 972*x^2 + 940*x - 927)). - 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) + 10368*n^2 - 27216*n + 18728.
a(n) = A050492(8*n-6) + 6*[2 + Sum_{i=2..n} (704*i^2 - 1848*i + 1272)], by summing wedge gnomons.
MATHEMATICA
a[n_]:=3456*n^3 - 8424*n^2 + 6848*n - 1854; Array[a, 30] (* James C. McMahon, Dec 09 2025 *)
(* Alternative: *)
LinearRecurrence[{ 4, -6, 4, -1}, {26, 5794, 36186, 111938}, 30] (* James C. McMahon, Dec 09 2025 *)
(* Alternative: *)
Rest[CoefficientList[Series[2*x*(927*x^3 + 6583*x^2 + 2845*x + 13)/(1 - x)^4, {x, 0, 30}], x]] (* James C. McMahon, Dec 09 2025 *)
CROSSREFS
Other pyritohedral numbers: A391165, A391166.
Sequence in context: A232374 A196427 A265979 * A058449 A034244 A263222
KEYWORD
nonn,easy,changed
AUTHOR
Derek Delk, Dec 01 2025
STATUS
approved