OFFSET
1,2
COMMENTS
Number of entries in row n is n.
Sum of entries in row n is A000041(n) = number of partitions of n.
T(n,0) = A000005(n) = number of divisors of n.
T(n,1) = 0.
T(n,2) = A000041(n-3), i.e., for n>=3 the number of partitions of n having 2 as the 2nd smallest part is equal to the number of partitions of n-3 (follows from a simple bijection: delete a part 2 and a part 1).
Sum_{k>=0} k*T(n,k) = A265248(n).
FORMULA
G.f.: G(t,x) = Sum_{i>=1} x^i/(1-x^i) (1 + Sum_{j>=i+1} t^j*x^j/Product_{k>=j}(1-x^k)).
EXAMPLE
T(5,3) = 2 because of [3,2] and [3,1,1].
Triangle starts:
1;
2, 0;
2, 0, 1;
3, 0, 1, 1;
2, 0, 2, 2, 1;
4, 0, 3, 1, 2, 1.
MAPLE
g := add(x^i*(1+add(t^j*x^j/(mul(1-x^k, k=j..80)), j=i+1..80))/(1-x^i), i=1..80):
gser := simplify(series(g, x = 0, 25)):
for n to 20 do P[n] := sort(coeff(gser, x, n)) end do:
for n to 20 do seq(coeff(P[n], t, k), k = 0 .. n-1) end do; # yields sequence in triangular form
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Dec 24 2015
STATUS
approved