|
Search: id:A091602
|
|
|
| A091602 |
|
Triangle: T(n,k) = number of partitions of n such that some part is repeated k times and no part is repeated more than k times. |
|
+0 9
|
|
| 1, 1, 1, 2, 0, 1, 2, 2, 0, 1, 3, 2, 1, 0, 1, 4, 3, 2, 1, 0, 1, 5, 4, 3, 1, 1, 0, 1, 6, 7, 3, 3, 1, 1, 0, 1, 8, 8, 6, 3, 2, 1, 1, 0, 1, 10, 12, 7, 5, 3, 2, 1, 1, 0, 1, 12, 15, 11, 6, 5, 2, 2, 1, 1, 0, 1, 15, 21, 14, 10, 5, 5, 2, 2, 1, 1, 0, 1, 18, 26, 20, 12, 9, 5, 4, 2, 2, 1, 1, 0, 1, 22, 35, 25, 18, 11
(list; table; graph; listen)
|
|
|
OFFSET
|
1,4
|
|
|
FORMULA
|
G.f.=G=G(t,x)=sum(t^k*(product((1-x^((k+1)j))/(1-x^j), j=1..infinity)-product((1-x^(kj))/(1-x^j), j=1..infinity)), k=1..infinity). - Emeric Deutsch (deutsch(AT)duke.poly.edu), Mar 30 2006
|
|
EXAMPLE
|
1; 1,1; 2,0,1; 2,2,0,1; 3,2,1,0,1; ...
In the partition 5+2+2+2+1+1, 2 is repeated 3 times, no part is repeated more than 3 times.
|
|
MAPLE
|
g:=sum(t^k*(product((1-x^((k+1)*j))/(1-x^j), j=1..50)-product((1-x^(k*j))/(1-x^j), j=1..50)), k=1..50): gser:=simplify(series(g, x=0, 20)): for n from 1 to 13 do P[n]:=coeff(gser, x^n) od: for n from 1 to 13 do seq(coeff(P[n], t^j), j=1..n) od; # yields sequence in triangular form - Emeric Deutsch (deutsch(AT)duke.poly.edu), Mar 30 2006
|
|
CROSSREFS
|
Row sums: A000041. Inverse: A091603. Square: A091604.
Columns 1-6: A000009, A091605-A091609. Convergent of columns: A002865.
Sequence in context: A113680 A128187 A133121 this_sequence A035465 A096144 A118401
Adjacent sequences: A091599 A091600 A091601 this_sequence A091603 A091604 A091605
|
|
KEYWORD
|
nonn,tabl
|
|
AUTHOR
|
Christian G. Bower (bowerc(AT)usa.net), Jan 23 2004
|
|
|
Search completed in 0.002 seconds
|