A384888 Number of integer partitions of n with all equal lengths of maximal anti-runs (decreasing by more than 1).
1, 1, 2, 3, 5, 6, 9, 10, 13, 17, 20, 24, 32, 36, 44, 55, 64, 75, 92, 105, 125, 147, 169, 195, 231, 263, 303, 351, 401, 458, 532, 600, 686, 784, 889, 1010, 1152, 1296, 1468, 1662, 1875, 2108, 2384, 2669, 3001, 3373, 3775, 4222, 4734, 5278, 5896, 6576, 7322
Offset: 0
Keywords
Examples
The partition y = (10,6,6,4,3,1) has maximal anti-runs ((10,6),(6,4),(3,1)), with lengths (2,2,2), so y is counted under a(30). The a(1) = 1 through a(8) = 13 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) (22211) (1111111) (32111) (221111) (2111111) (11111111)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],SameQ@@Length/@Split[#,#2<#1-1&]&]],{n,0,15}]