OFFSET
0,4
COMMENTS
The octahedral graph is the dual of the cubical graph whose chromatic polynomial is evaluated in A140986.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..10000
Eric Weisstein's World of Mathematics, Octahedral Graph.
Index entries for linear recurrences with constant coefficients, signature (7,-21,35,-35,21,-7,1).
FORMULA
a(n) = n*(n-1)*(n-2)*(n^3 - 9*n^2 + 29*n - 32).
G.f.: 6*x^3*(1 + 9*x + 39*x^2 + 71*x^3)/(1-x)^7. - Colin Barker, Feb 12 2012
a(n) = 7*a(n-1) - 21*a(n-2) + 35*a(n-3) - 35*a(n-4) + 21*a(n-5) - 7*a(n-6) + a(n-7) for n > 6. - Chai Wah Wu, Jan 19 2024
MATHEMATICA
Table[n*(n-1)*(n-2)*(n^3-9*n^2+29*n-32), {n, 0, 50}] (* Vincenzo Librandi, Feb 12 2012 *)
PROG
(Magma) [n*(n-1)*(n-2)*(n^3 - 9*n^2 + 29*n - 32): n in [0..50]]; // Vincenzo Librandi, Feb 12 2012
(Maxima) A115400(n):=n*(n-1)*(n-2)*(n^3 - 9*n^2 + 29*n - 32)$
makelist(A115400(n), n, 0, 30); /* Martin Ettl, Nov 03 2012 */
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Aug 25 2008
STATUS
approved