OFFSET
1,3
COMMENTS
a(n) is the number of diagonals of length sqrt(3) in an n-cube. - Nigel Stepp, Oct 06 2019
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 (8,-24,32,-16).
FORMULA
a(n) = 2^(n-1)*binomial(n,3).
a(n) = 8*a(n-1)-24*a(n-2)+32*a(n-3)-16*a(n-4).
G.f.: (4*x^3)/(-1 + 2*x)^4.
MATHEMATICA
Table[2^(n - 1) Binomial[n, 3], {n, 20}]
LinearRecurrence[{8, -24, 32, -16}, {0, 0, 4, 32}, 20]
CoefficientList[Series[(4 x^2)/(-1 + 2 x)^4, {x, 0, 20}], x]
CROSSREFS
KEYWORD
nonn,easy,changed
AUTHOR
Eric W. Weisstein, Jul 17 2017
STATUS
approved