login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A275867
Number of simple disconnected asymmetric graph on n vertices.
2
0, 0, 0, 0, 0, 0, 8, 144, 3552, 131452, 7840396, 797524408
OFFSET
1,7
COMMENTS
For 2 < n < 12, a(n) = A124059(n-1) (connected asymmetric graphs). This is because the singleton is the only asymmetric graph with fewer than 6 vertices, so in a disconnected asymmetric graph with fewer than 12 vertices one connected component must be the singleton, and it cannot occur more than once. - Falk Hüffner, Jan 16 2020
REFERENCES
1
LINKS
Eric Weisstein's World of Mathematics, Graph Automorphism
Eric Weisstein's World of Mathematics, Identity Graph
FORMULA
a(n) = A003400(n) - A124059(n).
MATHEMATICA
A[s_Integer] := With[{s6 = StringPadLeft[ToString[s], 6, "0"]}, Cases[ Import[ "https://oeis.org/A" <> s6 <> "/b" <> s6 <> ".txt", "Table"], {_, _}][[All, 2]]];
A003400 = A@003400;
A124059 = A@124059;
a[n_] := A003400[[n]] - A124059[[n]];
a /@ Range[12] (* Jean-François Alcover, Jan 07 2020 *)
CROSSREFS
Cf. A003400 (not-necessarily connected simple asymmetric graphs).
Cf. A124059 (connected simple asymmetric graphs).
Sequence in context: A134492 A067421 A124059 * A052764 A341957 A024284
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, May 19 2017
EXTENSIONS
a(12) from Jean-François Alcover, Jan 07 2020
STATUS
approved