OFFSET
0,5
COMMENTS
The row lengths are n(n+1)/2 +1 (A000124).
FORMULA
E.g.f. for row n is Product_m=0...n[Sum_i=0...m[x^i/i! ]].
EXAMPLE
T(3,2) = 8 because there are 8 two letter words that can be formed using the letters a,b,b,c,c,c: {a, b}, {a, c}, {b, a}, {b, b}, {b, c}, {c, a}, {c, b}, {c, c}.
Triangle Begins
1;
1,1;
1,2,3,3;
1,3,8,19,38,60,60;
1,4,15,53,175,535,1490,3675,7700,12600,12600;
MATHEMATICA
Table[CoefficientList[Series[Product[Sum[x^i/i!, {i, 0, n}], {n, 0, m}], {x, 0, (m^2 + m)/2}], x]*Table[n!, {n, 0, (m^2 + m)/2}], {m, 0, 5}] // Grid
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Geoffrey Critzer, Feb 06 2010
STATUS
approved