OFFSET
0,13
FORMULA
G.f.=G(t,x)=1+sum(x^(k^2)*P(k-1)sum(t^(k-j)*x^j*P(j), j=0..k)/(1-tx^k), k=1..infinity), where P(m)=1/product(1-x^i,i=1..m).
EXAMPLE
T(4,0)=1 because [4] has Durfee square of size 1 and there is no part equal to 1; T(4,1)=1 because [3,1] has Durfee square of size 1 and there is 1 part equal to 1; T(4,2)=2 because [2,2] has Durfee square of size 2 and there are 2 parts equal to 2 and [2,1,1] has Durfee square of size 1 and there are 2 parts equal to 1; T(4,3)=0 because obviously no partition of 4 can have exactly 3 parts of the same size; T(4,4)=1 because [1,1,1,1] has Durfee square of size 1 and there are 4 parts equal to 1.
Triangle starts:
1;
0,1;
1,0,1;
1,1,0,1;
1,1,2,0,1;
1,2,2,1,0,1;
MAPLE
g:=1+sum(x^(k^2)*sum(t^(k-j)*x^j/product(1-x^i, i=1..j), j=0..k)/(1-t*x^k)/product(1-x^i, i=1..k-1), k=1..20): gser:=simplify(series(g, x=0, 30)): P[0]:=1: for n from 1 to 13 do P[n]:=sort(coeff(gser, x^n)) od: for n from 0 to 13 do seq(coeff(P[n], t, p), p=0..n) od; # yields sequence in triangular form
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Apr 14 2006
EXTENSIONS
Keyword tabl added by Michel Marcus, Apr 09 2013
STATUS
approved