A330373 Sum of all parts of all self-conjugate partitions of n.
0, 1, 0, 3, 4, 5, 6, 7, 16, 18, 20, 22, 36, 39, 42, 60, 80, 85, 90, 114, 140, 168, 176, 207, 264, 300, 312, 378, 448, 493, 540, 620, 736, 825, 884, 1015, 1188, 1295, 1406, 1599, 1840, 2009, 2184, 2451, 2772, 3060, 3312, 3666, 4176, 4557, 4900, 5457, 6084, 6625, 7182, 7920, 8792, 9576, 10324, 11328, 12540
Offset: 0
Keywords
Examples
For n = 10 there are only two partitions of 10 whose Ferrers diagram are symmetric, they are [5, 2, 1, 1, 1] and [4, 3, 2, 1] as shown below: * * * * * * * * * * * * * * * * * * * * The sum of all parts of these partitions is 5 + 2 + 1 + 1 + 1 + 4 + 3 + 2 + 1 = 20, so a(10) = 20. Also, in accordance with the first formula; a(10) = 2*10 = 20.
Links
- Freddy Barrera, Table of n, a(n) for n = 0..10000
Crossrefs
Programs
-
PARI
seq(n)={Vec(deriv(exp(sum(k=1, n, x^k/(k*(1 - (-x)^k)) + O(x*x^n)))), -(n+1))} \\ Andrew Howroyd, Dec 31 2019
Comments