cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A361527 Triangular array read by rows. T(n,k) is the number of labeled digraphs on [n] having exactly k strongly connected components all of which are simple cycles, n >= 0, 0 <= k <= n.

Original entry on oeis.org

1, 0, 1, 0, 1, 3, 0, 2, 21, 25, 0, 6, 213, 774, 543, 0, 24, 3470, 30275, 59830, 29281, 0, 120, 95982, 1847265, 7757355, 10110735, 3781503, 0, 720, 4578588, 190855000, 1522899105, 3944546095, 3767987307, 1138779265
Offset: 0

Views

Author

Geoffrey Critzer, Mar 14 2023

Keywords

Comments

Here, a strongly connected component containing exactly 1 vertex is considered a cycle.

Examples

			  1;
  0,  1;
  0,  1,   3;
  0,  2,  21,    25;
  0,  6, 213,   774,   543;
  0, 24,3470, 30275, 59830, 29281;
  ...
		

Crossrefs

Cf. A011266 (row sums), A003024 (main diagonal), A000142 (column k=1).

Programs

  • Mathematica
     nn = 7;
    a[x_] := Log[1/(1 - x)];
    begfa =Total[CoefficientList[ Series[1/(Total[ CoefficientList[Series[ Exp[-u *a[x]], {x, 0, nn}], x]* Table[z^n/(2^Binomial[n, 2]), {n, 0, nn}]]), {z, 0, nn}], z]*Table[z^n 2^Binomial[n, 2], {n, 0, nn}]];
    Table[Take[(Range[0, nn]! CoefficientList[begfa, {z, u}])[[i]],i], {i, 1, nn + 1}] // Grid