login
A387458
a(n) = 4*(23 - 17*n + 8*n^2).
0
56, 84, 176, 332, 552, 836, 1184, 1596, 2072, 2612, 3216, 3884, 4616, 5412, 6272, 7196, 8184, 9236, 10352, 11532, 12776, 14084, 15456, 16892, 18392, 19956, 21584, 23276, 25032, 26852, 28736, 30684, 32696, 34772, 36912, 39116, 41384, 43716, 46112, 48572
OFFSET
1,1
COMMENTS
For n >= 3, also the number of Hamiltonian paths in the n-Plummer-Toft graph.
LINKS
Eric Weisstein's World of Mathematics, Hamiltonian Path.
Eric Weisstein's World of Mathematics, Plummer-Toft Graph.
FORMULA
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3).
G.f.: -4*x*(14-21*x+23*x^2)/(-1+x)^3.
E.g.f.: 4*(exp(x)*(8*x^2 - 9*x + 23) - 23). - Elmo R. Oliveira, Sep 04 2025
MATHEMATICA
Table[4 (23 - 17 n + 8 n^2), {n, 20}]
LinearRecurrence[{3, -3, 1}, {56, 84, 176}, 20]
CoefficientList[Series[-(4 (14 - 21 x + 23 x^2)/(-1 + x)^3), {x, 0, 20}], x]
CROSSREFS
Sequence in context: A214250 A286981 A254369 * A234927 A104394 A353281
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Aug 29 2025
STATUS
approved