A363947 Number of integer partitions of n with mean < 3/2.
0, 1, 1, 1, 2, 2, 2, 4, 4, 4, 7, 7, 7, 12, 12, 12, 19, 19, 19, 30, 30, 30, 45, 45, 45, 67, 67, 67, 97, 97, 97, 139, 139, 139, 195, 195, 195, 272, 272, 272, 373, 373, 373, 508, 508, 508, 684, 684, 684, 915, 915, 915, 1212, 1212, 1212, 1597, 1597, 1597, 2087
Offset: 0
Keywords
Examples
The partition y = (2,2,1) has mean 5/3, which is not less than 3/2, so y is not counted under 5. The a(1) = 1 through a(8) = 4 partitions: (1) (11) (111) (211) (2111) (21111) (22111) (221111) (1111) (11111) (111111) (31111) (311111) (211111) (2111111) (1111111) (11111111)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],Round[Mean[#]]==1&]],{n,0,15}]
Comments