login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A378923
Number of minimal edge cuts in the n-cycle complement graph.
0
0, 2, 10, 22, 49, 111, 237, 491, 1001, 2023, 4069, 8163, 16353, 32735, 65501, 131035, 262105, 524247, 1048533, 2097107, 4194257, 8388559, 16777165, 33554379, 67108809, 134217671, 268435397, 536870851, 1073741761, 2147483583, 4294967229, 8589934523, 17179869113
OFFSET
3,2
LINKS
Eric Weisstein's World of Mathematics, Cycle Complement Graph.
Eric Weisstein's World of Mathematics, Minimal Edge Cut.
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
Sequence in context: A096183 A218612 A218548 * A079605 A075222 A333703
KEYWORD
nonn,easy,new
AUTHOR
Eric W. Weisstein, Dec 11 2024
EXTENSIONS
a(10) onwards from Andrew Howroyd, Dec 11 2024
STATUS
approved