login
A160250
a(n) = 64*n^3 - 168*n^2 + 148*n - 43.
2
1, 93, 617, 1957, 4497, 8621, 14713, 23157, 34337, 48637, 66441, 88133, 114097, 144717, 180377, 221461, 268353, 321437, 381097, 447717, 521681, 603373, 693177, 791477, 898657, 1015101, 1141193, 1277317, 1423857, 1581197, 1749721, 1929813, 2121857, 2326237, 2543337, 2773541, 3017233
OFFSET
1,2
COMMENTS
From Derek Delk, Oct 15 2025: (Start)
These are figurate numbers produced in the construction of approximate rhombic dodecahedrons using points in a face-centered cubic lattice. Each term is expressed as two summations.
One summation takes the (4n-3)-th octahedral number (A005900) and adds 8 stacks of triangular numbers (A000217), each consisting of n-1 layers. This corresponds to constructing a rhombic dodecahedron by starting with an octahedron and placing a triangular pyramid on each of its 8 faces.
So, a(n) = A005900(4n-3) + 8*Sum_{i=1..n-1} A000217(4i-3).
Another summation takes the (2n-1)-th thickened cube number (A050492) and adds 6 stacks consisting of alternating layers of centered square numbers (A001844) and 4 times triangular numbers (A046092), totaling 2n-2 layers per stack. This corresponds to constructing a rhombic dodecahedron by starting with a cube and placing a square pyramid on each of its 6 faces.
So, a(n) = A050492(2n-1) + 6*Sum_{i=2..n} A001844(2i-4) + A046092(2i-3).
These figurate numbers relate to face-centered cubic lattice analogously to how rhombic dodecahedral numbers (A005917) relate to body-centered cubic lattice and how Haüy rhombic dodecahedral numbers (A046142) relate to primitive cubic lattice. (End)
REFERENCES
John H. Conway and Richard K. Guy, 'The Book of Numbers', Copernicus Pub. Co., 1996.
Peter Pearce and Susan Pearce, 'Polyhedra primer', Van Nostrand Reinhold, 1978.
FORMULA
G.f.: x*(1 + 89*x + 251*x^2 + 43*x^3)/(1-x)^4. - R. J. Mathar, Nov 10 2011
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4). - Vincenzo Librandi, Jul 01 2012
E.g.f.: 43 + (-43 + 44*x + 24*x^2 + 64*x^3)*exp(x). - G. C. Greubel, Nov 14 2019
MAPLE
seq(((8*n-7)^3 +(8*n-1))/8, n=1..40); # G. C. Greubel, Nov 14 2019
MATHEMATICA
CoefficientList[Series[(1+89*x+251*x^2+43*x^3)/(x-1)^4, {x, 0, 40}], x] (* Vincenzo Librandi, Jul 01 2012 *)
LinearRecurrence[{4, -6, 4, -1}, {1, 93, 617, 1957}, 30] (* Harvey P. Dale, Mar 16 2013 *)
Table[((8*n-7)^3 +(8*n-1))/8, {n, 40}] (* G. C. Greubel, Nov 14 2019 *)
PROG
(Magma) I:=[1, 93, 617, 1957]; [n le 4 select I[n] else 4*Self(n-1) - 6*Self(n-2)+4*Self(n-3)-Self(n-4): n in [1..40]]; // Vincenzo Librandi, Jul 01 2012
(PARI) a(n)=64*n^3-168*n^2+148*n-43 \\ Charles R Greathouse IV, Apr 25 2016
(SageMath) [((8*n-7)^3 +(8*n-1))/8 for n in (1..40)] # G. C. Greubel, Nov 14 2019
(GAP) List([1..40], n-> ((8*n-7)^3 +(8*n-1))/8); # G. C. Greubel, Nov 14 2019
CROSSREFS
Sequence in context: A146090 A160174 A238693 * A332614 A264556 A250373
KEYWORD
easy,nonn
AUTHOR
Chris G. Spies-Rusk (chaosorder4(AT)gmail.com), May 05 2009, May 11 2009, May 19 2009
EXTENSIONS
Edited by G. C. Greubel, Nov 14 2019
STATUS
approved