OFFSET
0,1
COMMENTS
The sequence has been extended to n=0 using the formula. - Andrew Howroyd, Dec 11 2024
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..500
Eric Weisstein's World of Mathematics, Minimal Edge Cut.
Eric Weisstein's World of Mathematics, Plummer-Toft Graph.
Index entries for linear recurrences with constant coefficients, signature (5,-9,7,-2).
FORMULA
From Andrew Howroyd, Dec 11 2024: (Start)
a(n) = 5*2^n + (n+2)*(n+7)/2.
G.f.: (12 - 38*x + 36*x^2 - 11*x^3)/((1 - x)^3*(1 - 2*x)). (End)
MATHEMATICA
Table[5 2^n + n (9 + n)/2 + 7, {n, 0, 20}]
LinearRecurrence[{5, -9, 7, -2}, {22, 38, 65, 113}, {0, 20}]
CoefficientList[Series[x (22 - 72 x + 73 x^2 - 24 x^3)/((-1 + x)^3 (-1 + 2 x)), {x, 0, 20}], x]
PROG
(PARI) a(n) = (n+2)*(n+7)/2 + 5*2^n \\ Andrew Howroyd, Dec 11 2024
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Dec 11 2024
EXTENSIONS
a(0)=12 prepended and a(8) onwards from Andrew Howroyd, Dec 11 2024
STATUS
approved