OFFSET
1,4
LINKS
Philippe Flajolet and Robert Sedgewick, Analytic Combinatorics, Cambridge Univ. Press, 2009, page 142.
FORMULA
E.g.f. for column k (without leading 0's): (d[A(x)]/dx)^k where A(x) is the e.g.f. for A001187.
EXAMPLE
1,
1, 1,
4, 2, 1,
38, 10, 3, 1,
728, 100, 18, 4, 1,
...
T(4,3)=3. There is only one unlabeled graph with 4 vertices and exactly three components. It consists of a path of length one and two isolated vertices. This graph can be labeled so that the 1,2,3 are all in different components in 3 ways.
MATHEMATICA
nn = 10; Map[Select[#, # > 0 &] &, Transpose[Map[Take[#, nn] &, Table[Clear[g]; g[z_] := Sum[2^Binomial[n, 2] z^n/n!, {n, 0, nn + k}]; Join[Table[0, {k - 1}], Range[0, nn]! CoefficientList[Series[D[Log[g[z]], z]^k, {z, 0, nn}], z]], {k, 1, nn}]]]] //Grid
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Geoffrey Critzer, Aug 03 2016
STATUS
approved