|
| |
|
|
A089333
|
|
Number of partitions into a square number of parts.
|
|
1
| |
|
|
1, 1, 1, 2, 2, 3, 4, 6, 8, 11, 14, 19, 24, 31, 39, 51, 63, 80, 99, 124, 153, 190, 233, 288, 353, 432, 527, 643, 780, 947, 1145, 1383, 1665, 2002, 2399, 2874, 3431, 4090, 4865, 5779, 6847, 8103, 9568, 11283, 13280, 15610, 18313, 21462, 25108, 29337, 34227
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,4
|
|
|
COMMENTS
| Also number of partitions of n such that the largest part is a square. Example: a(7)=4 because we have [4,3],[4,2,1],[4,1,1,1] and [1,1,1,1,1,1,1]. - Emeric Deutsch (deutsch(AT)duke.poly.edu), Apr 04 2006
|
|
|
FORMULA
| G.f.: Sum(x^(n^2)/Product(1-x^i, i = 1 .. n^2), n = 1 .. infinity).
|
|
|
EXAMPLE
| a(7)=4 because we have [7],[4,1,1,1],[3,2,1,1] and [2,2,2,1].
|
|
|
MAPLE
| g:=sum(x^(k^2)/product(1-x^i, i=1..k^2), k=1..7): gser:=series(g, x=0, 55): seq(coeff(gser, x, n), n=1..51); - Emeric Deutsch (deutsch(AT)duke.poly.edu), Apr 04 2006
|
|
|
CROSSREFS
| Sequence in context: A035542 A130081 A141847 * A098492 A173508 A103632
Adjacent sequences: A089330 A089331 A089332 * A089334 A089335 A089336
|
|
|
KEYWORD
| easy,nonn
|
|
|
AUTHOR
| Vladeta Jovovic (vladeta(AT)eunet.rs), Dec 25 2003
|
| |
|
|