login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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))). 1
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; refs; listen; history; text; internal format)
OFFSET

1,13

COMMENTS

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, 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).

LINKS

Table of n, a(n) for n=1..103.

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, 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: A062756 A174695 A165577 * A130161 A115672 A079694

Adjacent sequences:  A116419 A116420 A116421 * A116423 A116424 A116425

KEYWORD

nonn,tabf

AUTHOR

Emeric Deutsch, Feb 14 2006

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified May 25 04:38 EDT 2013. Contains 225638 sequences.