OFFSET
1,4
LINKS
Eric Weisstein's World of Mathematics, Graph Cycle
Eric Weisstein's World of Mathematics, Halved Cube Graph
Index entries for linear recurrences with constant coefficients, signature (12, -60, 160, -240, 192, -64).
FORMULA
a(n) = 3*2^n*binomial(n,4)*(29*n-86)/5.
a(n) = 12*a(n-1)-60*a(n-2)+160*a(n-3)-240*a(n-4)+192*a(n-5)-64*a(n-6).
G.f.: (96*x*(3*x^3 + 23*x^4))/(-1 + 2*x)^6.
MATHEMATICA
Table[3 2^n Binomial[n, 4] (29 n - 86)/5, {n, 20}]
LinearRecurrence[{12, -60, 160, -240, 192, -64}, {0, 0, 0, 288, 5664, 50688}, 20]
CoefficientList[Series[(96 (3 x^3 + 23 x^4))/(-1 + 2 x)^6, {x, 0, 20}], x]
PROG
(PARI) a(n)=([0, 1, 0, 0, 0, 0; 0, 0, 1, 0, 0, 0; 0, 0, 0, 1, 0, 0; 0, 0, 0, 0, 1, 0; 0, 0, 0, 0, 0, 1; -64, 192, -240, 160, -60, 12]^(n-1)*[0; 0; 0; 288; 5664; 50688])[1, 1] \\ Charles R Greathouse IV, May 28 2026
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Jul 17 2017
STATUS
approved
