|
Search: id:A116599
|
|
|
| A116599 |
|
Triangle read by rows: T(n,k) is the number of partitions of n having exactly k parts equal to 2 (n>=0, 0<=k<=floor(n/2)). |
|
+0 1
|
|
| 1, 1, 1, 1, 2, 1, 3, 1, 1, 4, 2, 1, 6, 3, 1, 1, 8, 4, 2, 1, 11, 6, 3, 1, 1, 15, 8, 4, 2, 1, 20, 11, 6, 3, 1, 1, 26, 15, 8, 4, 2, 1, 35, 20, 11, 6, 3, 1, 1, 45, 26, 15, 8, 4, 2, 1, 58, 35, 20, 11, 6, 3, 1, 1, 75, 45, 26, 15, 8, 4, 2, 1, 96, 58, 35, 20, 11, 6, 3, 1, 1, 121, 75, 45, 26, 15, 8, 4, 2, 1
(list; table; graph; listen)
|
|
|
OFFSET
|
0,5
|
|
|
COMMENT
|
Row n has 1+floor(n/2) terms. Row sums are the partition numbers (A000041). T(n,0)=A027336(n), Sum(k*T(n,k),k=0..floor(n/2))=A024786(n). Column k has g.f. x^(2k)/[(1-x)product(1-x^j,j=3..infinity)] (k=0,1,2,...).
|
|
FORMULA
|
G.f.=1/[(1-x)(1-tx^2)product(1-x^j, j=3..infinity)]. T(n,k)=p(n-2k)-p(n-2k-2) for k<=(n-2)/2; T(n, floor(n/2))=1 (follows at once from the g.f.).
|
|
EXAMPLE
|
T(6,1)=3 because we have [4,2], [3,2,1], and [2,1,1,1,1].
Triangle starts:
1;
1;
1,1;
2,1;
3,1,1;
4,2,1;
6,3,1,1;
8,4,2,1;
|
|
MAPLE
|
with(combinat): T:=proc(n, k) if k=floor(n/2) then 1 elif k<=(n-2)/2 then numbpart(n-2*k)-numbpart(n-2*k-2) fi end: for n from 0 to 18 do seq(T(n, k), k=0..n) od; # yields sequence in triangular form
|
|
CROSSREFS
|
Cf. A000041, A027336, A024786.
Sequence in context: A010766 A135841 A089178 this_sequence A138121 A138151 A122610
Adjacent sequences: A116596 A116597 A116598 this_sequence A116600 A116601 A116602
|
|
KEYWORD
|
nonn,tabl
|
|
AUTHOR
|
Emeric Deutsch (deutsch(AT)duke.poly.edu), Feb 18 2006
|
|
|
Search completed in 0.002 seconds
|