[go: up one dir, main page]

login
A327379
Number of labeled non-mating-type graphs with n vertices.
2
0, 1, 4, 32, 436, 11292, 545784, 49826744, 8647819328, 2876819527744, 1848998498567936, 2312324942899031040, 5659406410382924819712, 27230994319259100289485568, 258465217554621196991878652416, 4851552662579126853087143276476928
OFFSET
1,3
COMMENTS
A mating-type graph has all different rows in its adjacency matrix.
LINKS
Ronald C. Read, The enumeration of mating-type graphs, Report CORR 89-38, Dept. Combinatorics and Optimization, Univ. Waterloo, 1989.
FORMULA
a(n) = A006125(n) - A006024(n). - Andrew Howroyd, Sep 11 2019
MATHEMATICA
Table[Length[Select[Subsets[Subsets[Range[n], {2}]], !UnsameQ@@AdjacencyMatrix[Graph[Range[n], #]]&]], {n, 5}]
PROG
(PARI) a(n) = {2^binomial(n, 2) - sum(k=0, n, stirling(n, k, 1)*2^binomial(k, 2))} \\ Andrew Howroyd, Sep 11 2019
CROSSREFS
The unlabeled version is A141580.
Sequence in context: A088991 A009668 A005121 * A214379 A192500 A192486
KEYWORD
nonn
AUTHOR
Gus Wiseman, Sep 05 2019
EXTENSIONS
Terms a(7) and beyond from Andrew Howroyd, Sep 11 2019
STATUS
approved