OFFSET
3,2
LINKS
Andrew Howroyd, Table of n, a(n) for n = 3..1000
Eric Weisstein's World of Mathematics, Cycle Complement Graph.
Eric Weisstein's World of Mathematics, Minimal Edge Cut.
Index entries for linear recurrences with constant coefficients, signature (4,-5,2).
FORMULA
From Andrew Howroyd, Dec 11 2024: (Start)
a(n) = 2^(n-1) - 2*n - 1 for n >= 7.
G.f.: x^4*(2 + 2*x - 8*x^2 + 7*x^3 + 5*x^4 - 6*x^5)/((1 - x)^2*(1 - 2*x)). (End)
PROG
(PARI) a(n)=if(n<7, [0, 2, 10, 22][n-2], 2^(n-1) - 2*n - 1) \\ Andrew Howroyd, Dec 11 2024
CROSSREFS
KEYWORD
nonn,easy,new
AUTHOR
Eric W. Weisstein, Dec 11 2024
EXTENSIONS
a(10) onwards from Andrew Howroyd, Dec 11 2024
STATUS
approved