OFFSET
0,3
COMMENTS
a(n) is the chromatic polynomial evaluated at the chromatic number of a graph summed over all simple labeled graphs on [n].
LINKS
Eric Weisstein's World of Mathematics, Chromatic Number.
Eric Weisstein's World of Mathematics, Chromatic Polynomial.
MATHEMATICA
(* this code only returns a(0) - a(7) using precomputed data in Mathematica 12 *)
nog = {1, 2, 4, 11, 34, 156, 1044}; Prepend[Table[Total[n!/Table[GraphData[{n, i}, AutomorphismCount"], {i, 1, nog[[n]]}]*Table[GraphData[{n, i}, ChromaticPolynomial"][GraphData[{n, i}, "ChromaticNumber"]], {i, 1, nog[[n]]}]], {n, 1, 7}], 1]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Geoffrey Critzer, Jan 22 2025
EXTENSIONS
a(8)-a(10) from Andrew Howroyd, Jan 22 2025
STATUS
approved
