A384887 Number of integer partitions of n with all equal lengths of maximal gapless runs (decreasing by 0 or 1).
1, 1, 2, 3, 5, 6, 9, 10, 14, 18, 21, 26, 35, 39, 46, 58, 68, 79, 97, 111, 131, 155, 177, 206, 246, 278, 318, 373, 423, 483, 563, 632, 722, 827, 931, 1058, 1209, 1354, 1528, 1736, 1951, 2188, 2475, 2762, 3097, 3488, 3886, 4342, 4876, 5414, 6038, 6741, 7482
Offset: 0
Keywords
Examples
The partition y = (6,5,5,5,3,3,2,1) has maximal gapless runs ((6,5,5,5),(3,3,2,1)), with lengths (4,4), so y is counted under a(30). The a(1) = 1 through a(8) = 14 partitions: (1) (2) (3) (4) (5) (6) (7) (8) (11) (21) (22) (32) (33) (43) (44) (111) (31) (41) (42) (52) (53) (211) (221) (51) (61) (62) (1111) (2111) (222) (322) (71) (11111) (321) (2221) (332) (2211) (3211) (2222) (21111) (22111) (3221) (111111) (211111) (3311) (1111111) (22211) (32111) (221111) (2111111) (11111111)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],SameQ@@Length/@Split[#,#2>=#1-1&]&]],{n,0,15}]