A381544 Number of integer partitions of n not containing more ones than any other part.
0, 0, 1, 2, 3, 4, 7, 8, 13, 17, 24, 30, 45, 54, 75, 97, 127, 160, 212, 263, 342, 427, 541, 672, 851, 1046, 1307, 1607, 1989, 2428, 2993, 3631, 4443, 5378, 6533, 7873, 9527, 11424, 13752, 16447, 19701, 23470, 28016, 33253, 39537, 46801, 55428, 65408, 77238
Offset: 0
Keywords
Examples
The a(2) = 1 through a(9) = 17 partitions: (2) (3) (4) (5) (6) (7) (8) (9) (21) (22) (32) (33) (43) (44) (54) (31) (41) (42) (52) (53) (63) (221) (51) (61) (62) (72) (222) (322) (71) (81) (321) (331) (332) (333) (2211) (421) (422) (432) (2221) (431) (441) (521) (522) (2222) (531) (3221) (621) (3311) (3222) (22211) (3321) (4221) (22221) (32211) (222111)
Crossrefs
The Heinz numbers of these partitions are A381439.
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],Count[#,1]<=Max@@Length/@Split[DeleteCases[#,1]]&]],{n,0,30}]