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)
PROG
(PARI) a(n) = (n+2)*(n+7)/2 + 5*2^n \\ Andrew Howroyd, Dec 11 2024
CROSSREFS
KEYWORD
nonn,easy,new
AUTHOR
Eric W. Weisstein, Dec 11 2024
EXTENSIONS
a(0)=12 prepended and a(8) onwards from Andrew Howroyd, Dec 11 2024
STATUS
approved