|
| |
|
|
A092314
|
|
Sum of smallest parts of all partitions of n into odd parts.
|
|
10
| |
|
|
1, 1, 4, 2, 7, 6, 11, 8, 18, 16, 24, 23, 34, 36, 51, 48, 66, 74, 90, 98, 126, 137, 164, 182, 220, 247, 294, 324, 380, 434, 496, 556, 650, 728, 835, 938, 1068, 1204, 1372, 1531, 1736, 1956, 2198, 2462, 2784, 3104, 3482, 3890, 4358, 4864, 5441, 6048, 6748, 7516
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,3
|
|
|
COMMENTS
| a(n)=Sum(k*A116856(n,k),k>=1). - Emeric Deutsch (deutsch(AT)duke.poly.edu), Feb 24 2006
|
|
|
FORMULA
| G.f.: Sum((2*n-1)*x^(2*n-1)/Product(1-x^(2*k-1), k = n .. infinity), n = 1 .. infinity).
|
|
|
EXAMPLE
| a(5)=7 because the partitions of 5 into odd parts are [5],[3,1,1] and [1,1,1,1,1] and the smallest parts add up to 5+1+1=7.
|
|
|
MAPLE
| g:=sum((2*n-1)*x^(2*n-1)/Product(1-x^(2*k-1), k=n..30), n=1..30): gser:=series(g, x=0, 57): seq(coeff(gser, x^n), n=1..54); - Emeric Deutsch (deutsch(AT)duke.poly.edu), Feb 24 2006
|
|
|
CROSSREFS
| Cf. A092322 A092269 A092309 A092321 A092313 A092310 A092311 A092268
Cf. A116856, A092322.
Sequence in context: A143370 A016695 A125271 * A110841 A128226 A049817
Adjacent sequences: A092311 A092312 A092313 * A092315 A092316 A092317
|
|
|
KEYWORD
| easy,nonn
|
|
|
AUTHOR
| Vladeta Jovovic (vladeta(AT)eunet.rs), Feb 15 2004
|
|
|
EXTENSIONS
| More terms from Pab Ter (pabrlos(AT)yahoo.com), May 25 2004
|
| |
|
|