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

A372920
Total number of n-colorings of all graphs on n labeled nodes.
2
1, 1, 6, 123, 7108, 1058885, 386056326, 332908216711, 662759754883080, 2991536714452469769, 30189087071961437767690, 673536638307789642838763531, 32919693104791033024939149066252, 3498056629389633452501822564131061773, 802931613320922331646386276441560583143438
OFFSET
0,3
LINKS
FORMULA
a(n) = A322280(n,n).
a(n) == n (mod 2) for n >= 1.
MATHEMATICA
nmax = 76;
a[n_] := 2^(n(n-1)/2)*n!*SeriesCoefficient[Sum[x^i/(2^(i(i-1)/2)*i!), {i, 0, nmax}]^n, {x, 0, n}];
Table[a[n], {n, 0, nmax}] (* Jean-François Alcover, May 28 2024 *)
CROSSREFS
Main diagonal of A322280.
Cf. A000035.
Sequence in context: A078261 A239752 A193223 * A132507 A223112 A224089
KEYWORD
nonn
AUTHOR
Alois P. Heinz, May 16 2024
STATUS
approved