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

A354615
Triangular array read by rows: T(n,k) is the number of labeled posets on [n] that are composed of exactly k irreducible posets, n >= 0, 0 <= k <= n.
2
1, 0, 1, 0, 1, 2, 0, 7, 6, 6, 0, 97, 62, 36, 24, 0, 2251, 1110, 510, 240, 120, 0, 80821, 30902, 11340, 4440, 1800, 720, 0, 4305127, 1273566, 369726, 119280, 42000, 15120, 5040, 0, 332273257, 75831422, 17192196, 4476024, 1335600, 433440, 141120, 40320
OFFSET
0,6
FORMULA
E.g.f.: 1/(1-y*(1-1/A(x))) where A(x) is the e.g.f. for A001035.
EXAMPLE
1;
0, 1;
0, 1, 2;
0, 7, 6, 6;
0, 97, 62, 36, 24;
0, 2251, 1110, 510, 240, 120;
...
MATHEMATICA
nn = 9; A[x_] := Total[Cases[Import["https://oeis.org/A001035/b001035.txt",
"Table"], {_, _}][[All, 2]]* Table[x^(i - 1)/(i - 1)!, {i, 1, 19}]]; Table[Take[(Range[0, nn]!* CoefficientList[ Series[1/(1 - y (1 - 1/A[x])), {x, 0, nn}], {x, y}])[[i]], i], {i, 1, nn}]
CROSSREFS
Cf. A046908 (column k=1), A001035 (row sums), A000142 (main diagonal).
Sequence in context: A228819 A104540 A178818 * A113319 A298749 A021832
KEYWORD
nonn,tabl
AUTHOR
Geoffrey Critzer, Jul 08 2022
STATUS
approved