OFFSET
0,3
COMMENTS
a(n) is the number of ways to choose a labeled digraph D with n vertices (as in A053763) and then topologically sort the condensation of D, i.e., the directed acyclic graph (A003024) obtained by contracting each strongly connected component of D to a single vertex.
The cases in which D is acyclic are counted by A011266.
LINKS
E. de Panafieu and S. Dovgal, Symbolic method and directed graph enumeration, arXiv:1903.09454 [math.CO], 2019.
Wikipedia, Strongly connected component
Wikipedia, Topological sorting
FORMULA
MATHEMATICA
nn = 13; strong = Select[Import["https://oeis.org/A003030/b003030.txt", "Table"],
Length@# == 2 &][[All, 2]]; s[z_] := Total[strong Table[z^i/B[i], {i, 1, 58}]];
B[n_] := n! 2^Binomial[n, 2]; Table[B[n], {n, 0, nn}] CoefficientList[ Series[1/(1 - s[z]), {z, 0, nn}], z]
CROSSREFS
KEYWORD
nonn
AUTHOR
Geoffrey Critzer, Jan 23 2025
STATUS
approved
