OFFSET
1,4
COMMENTS
Also the number of tetrahedra in the halved cube graph Q_n/2.
LINKS
Eric Weisstein's World of Mathematics, Graph Tetrahedron.
Eric Weisstein's World of Mathematics, Halved Cube Graph.
Index entries for linear recurrences with constant coefficients, signature (10,-40,80,-80,32).
FORMULA
a(n) = 10*a(n-1)-40*a(n-2)+80*a(n-3)-80*a(n-4)+32*a(n-5).
G.f.: -x^3*(1+6*x)/(-1+2*x)^5.
Sum_{n>=3} 1/a(n) = Pi^2/2 + 3*log(2)*(1-log(2)) - 9/2. - Amiram Eldar, Jan 08 2026
MATHEMATICA
Table[n (n - 1) (n - 2)^2 2^(n - 4)/3, {n, 28}]
LinearRecurrence[{10, -40, 80, -80, 32}, {0, 0, 1, 16, 120, 640}, 20]
CoefficientList[Series[x^2 (1 + 6 x)/(1 - 2 x)^5, {x, 0, 20}], x]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Dec 19 2025
STATUS
approved
