login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A118198 Triangle read by rows: T(n,k) is the number of partitions of n having k parts equal to the size of the Durfee square (0<=k<=n). 2

%I #7 Apr 09 2013 08:08:26

%S 1,0,1,1,0,1,1,1,0,1,1,1,2,0,1,1,2,2,1,0,1,2,3,2,2,1,0,1,3,4,3,2,1,1,

%T 0,1,5,6,4,2,2,1,1,0,1,7,8,5,4,2,1,1,1,0,1,10,11,8,5,2,2,1,1,1,0,1,13,

%U 15,11,7,3,2,1,1,1,1,0,1,18,20,16,9,5,2,2,1,1,1,1,0,1,23,27,21,13,6,3,2,1

%N Triangle read by rows: T(n,k) is the number of partitions of n having k parts equal to the size of the Durfee square (0<=k<=n).

%C Row sums yield the partition numbers (A000041). T(n,0)=A118199(n)

%F 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).

%e 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.

%e Triangle starts:

%e 1;

%e 0,1;

%e 1,0,1;

%e 1,1,0,1;

%e 1,1,2,0,1;

%e 1,2,2,1,0,1;

%p 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

%Y Cf. A000041, A118199.

%K nonn,tabl

%O 0,13

%A _Emeric Deutsch_, Apr 14 2006

%E Keyword tabl added by _Michel Marcus_, Apr 09 2013

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)