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”).

A287025
Number of simple disconnected well-covered graphs on n nodes.
2
0, 1, 2, 4, 8, 19, 56, 208, 1160, 11240, 218653, 8226984
OFFSET
1,3
LINKS
Eric Weisstein's World of Mathematics, Disconnected Graph
Eric Weisstein's World of Mathematics, Well-Covered Graph
FORMULA
a(n) = A222626(n) - A222625(n).
MATHEMATICA
A222626 = {1, 2, 3, 7, 14, 46, 164, 996, 10195, 208168, 8016530, 542165050};
mob[m_, n_] := If[Mod[m, n] == 0, MoebiusMu[m/n], 0];
EULERi[b_] := Module[{a, c, i, d}, c = {}; For[i = 1, i <= Length[b], i++, c = Append[c, i b[[i]] - Sum[c[[d]] b[[i - d]], {d, 1, i - 1}]]]; a = {}; For[i = 1, i <= Length[b], i++, a = Append[a, (1/i)*Sum[mob[i, d] c[[d]], {d, 1, i}]]]; Return[a]];
A222626 - EULERi[A222626] (* Jean-François Alcover, Feb 22 2019, after Andrew Howroyd in A222625 *)
CROSSREFS
Cf. A222625 (number of simple connected well-covered graphs on n vertices).
Cf. A222626 (number of simple not necessarily connected well-covered graphs on n vertices).
Sequence in context: A320178 A128816 A006897 * A034767 A005518 A326997
KEYWORD
nonn,more
AUTHOR
Eric W. Weisstein, May 18 2017
EXTENSIONS
a(11)-a(12) from formula by Falk Hüffner, Aug 15 2017
STATUS
approved