A361392 Number of integer partitions of n whose first differences have mean -1.
0, 0, 0, 1, 0, 2, 1, 3, 2, 5, 4, 8, 7, 12, 12, 19, 19, 29, 31, 43, 48, 65, 73, 97, 110, 142, 164, 208, 240, 301, 350, 432, 504, 617, 719, 874, 1019, 1228, 1434, 1717, 2001, 2385, 2778, 3292, 3831, 4522, 5252, 6177, 7164, 8392, 9722, 11352, 13125, 15283, 17643
Offset: 0
Keywords
Examples
The a(3) = 1 through a(11) = 8 partitions: (21) . (32) (321) (43) (422) (54) (442) (65) (311) (331) (4211) (432) (4321) (533) (4111) (4221) (4411) (4331) (4311) (52111) (4421) (51111) (5222) (52211) (53111) (611111) For example, the partition y = (4,2,2,1) has first differences (-2,0,-1), with mean -1, so y is counted under a(9).
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],Mean[Differences[#]]==-1&]],{n,0,30}]
Comments