login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A137567 Number of chromatically nonunique simple graphs on n nodes. 2

%I #28 Mar 14 2020 15:22:38

%S 0,0,0,4,18,115,905,11642,267398,11821562

%N Number of chromatically nonunique simple graphs on n nodes.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/ChromaticPolynomial.html">Chromatic Polynomial</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/ChromaticallyUniqueGraph.html">Chromatically Unique Graph</a>

%F a(n) = A000088(n) - A137568(n).

%o (Sage)

%o def A137567(n):

%o d = {}

%o for g in graphs(n):

%o c = g.chromatic_polynomial()

%o d[c] = 1 if c not in d else d[c]+1

%o return sum(d.values()) - d.values().count(1) # _D. S. McNeil_, Jan 02 2011

%Y Cf. A137568 (number of chromatically unique graphs).

%Y Cf. A000088 (number of simple graphs).

%K nonn,more,hard

%O 1,4

%A _Eric W. Weisstein_, Jan 26 2008

%E a(9) from _Eric W. Weisstein_, Apr 07 2008

%E a(8) and a(9) corrected by _Eric W. Weisstein_, Jan 02 2011

%E a(10) from _Eric W. Weisstein_, Jun 09 2014

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)