A363526 Number of integer partitions of n with reverse-weighted sum 3*n.
1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 1, 2, 2, 2, 4, 3, 2, 4, 4, 4, 5, 5, 4, 7, 7, 5, 8, 7, 6, 11, 9, 8, 11, 10, 10, 13, 12, 11, 15, 15, 12, 17, 16, 14, 20, 18, 16, 22, 20, 19, 24, 22, 20, 27, 26, 23, 29, 27, 25, 33, 30, 28, 35, 33, 31, 38, 36, 33, 41, 40
Offset: 0
Keywords
Examples
The partition (6,4,4,1) has sum 15 and reverse-weighted sum 45 so is counted under a(15). The a(n) partitions for n = {5, 10, 15, 16, 21, 24}: (1,1,1,1,1) (4,3,2,1) (6,4,4,1) (6,5,4,1) (8,6,6,1) (9,7,7,1) (2,2,2,2,2) (6,5,2,2) (6,6,2,2) (8,7,4,2) (9,8,5,2) (7,3,3,2) (7,4,3,2) (9,5,5,2) (9,9,3,3) (3,3,3,3,3) (9,6,3,3) (10,6,6,2) (10,4,4,3) (10,7,4,3) (11,5,5,3) (12,4,4,4)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],Total[Accumulate[#]]==3n&]],{n,0,30}]
Comments