|
Search: id:A116422
|
|
|
| A116422 |
|
Triangle read by rows: T(n,k) is the number of self-conjugate partitions of n having Durfee square of size k (n>=1; 1<=k<=floor(sqrt(n))). |
|
+0 2
|
|
| 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 2, 1, 0, 1, 0, 2, 0, 1, 0, 1, 0, 3, 0, 1, 0, 2, 0, 3, 0, 1, 0, 3, 0, 4, 0, 1, 1, 0, 4, 0, 0, 4, 0, 1, 1, 0, 5, 0, 0, 5, 0, 2, 1, 0, 7, 0, 0, 5, 0, 3, 1, 0, 8, 0, 0, 6, 0, 5, 1, 0, 10, 0, 1, 0, 6, 0, 6, 0, 1, 0, 12, 0, 1, 0, 7, 0, 9, 0, 1, 0, 14, 0, 2, 0, 7, 0, 11, 0, 1, 0, 16
(list; graph; listen)
|
|
|
OFFSET
|
1,13
|
|
|
COMMENT
|
Row n contains floor(sqrt(n)) terms (0's are possible even at the end of the rows). Row sums yield A000700. sum(k*T(n,k),k=1..floor(sqrt(n)))=A079499(n).
Also number of partitions of n into k distinct odd parts. Example: T(13,3)=2 because we have [9,3,1] and [7,5,1]. - Emeric Deutsch (deutsch(AT)duke.poly.edu), Feb 24 2006
|
|
REFERENCES
|
G. E. Andrews, The Theory of Partitions, Addison-Wesley, 1976 (pp. 27-28).
G. E. Andrews and K. Eriksson, Integer Partitions, Cambridge Univ. Press, 2004 (pp. 75-78).
|
|
FORMULA
|
G.f.=sum(t^k*x^(k^2)/product(1-x^(2i),i=1..k),k=1..infinity).
G.f.=-1+product(1+tx^(2j-1),j=1..infinity). - Emeric Deutsch (deutsch(AT)duke.poly.edu), Feb 24 2006
|
|
EXAMPLE
|
T(13,3)=2 because we have [5,3,3,1,1] and [4,4,3,2] (there is one more self-conjugate partition of 13, namely [7,1,1,1,1,1,1], having Durfee square of size 1).
Triangle starts:
1;
0;
1;
0,1;
1,0;
0,1;
1,0;
0,2;
1,0,1;
0,2,0;
|
|
MAPLE
|
g:=sum(t^k*q^(k^2)/product(1-q^(2*i), i=1..k), k=1..15): gser:=simplify(series(g, q=0, 40)): for n from 1 to 33 do P[n]:=coeff(gser, q^n) od: for n from 1 to 33 do row[n]:=seq(coeff(P[n], t^j), j=1..floor(sqrt(n))) od; # yields sequence in triangular form
|
|
CROSSREFS
|
Cf. A000700, A079499.
Sequence in context: A065363 A119995 A062756 this_sequence A130161 A115672 A079694
Adjacent sequences: A116419 A116420 A116421 this_sequence A116423 A116424 A116425
|
|
KEYWORD
|
nonn,tabf
|
|
AUTHOR
|
Emeric Deutsch (deutsch(AT)duke.poly.edu), Feb 14 2006
|
|
|
Search completed in 0.002 seconds
|