A384880 Number of strict integer partitions of n with all distinct lengths of maximal anti-runs (decreasing by more than 1).
1, 1, 1, 1, 2, 2, 3, 4, 6, 6, 9, 10, 12, 15, 18, 21, 25, 30, 34, 41, 46, 55, 63, 75, 85, 99, 114, 133, 152, 178, 201, 236, 269, 308, 352, 404, 460, 525, 594, 674, 763, 865, 974, 1098, 1236, 1385, 1558, 1745, 1952, 2181, 2435, 2712, 3026, 3363, 3740, 4151, 4612
Offset: 0
Keywords
Examples
The strict partition y = (10,7,6,4,2,1) has maximal anti-runs ((10,7),(6,4,2),(1)), with lengths (2,3,1), so y is counted under a(30). The a(1) = 1 through a(14) = 18 partitions (A-E = 10-14): 1 2 3 4 5 6 7 8 9 A B C D E 31 41 42 52 53 63 64 74 75 85 86 51 61 62 72 73 83 84 94 95 421 71 81 82 92 93 A3 A4 431 531 91 A1 A2 B2 B3 521 621 532 542 B1 C1 C2 541 632 642 643 D1 631 641 651 652 653 721 731 732 742 743 821 741 751 752 831 832 761 921 841 842 931 851 A21 932 6421 941 A31 B21 7421
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],UnsameQ@@#&&UnsameQ@@Length/@Split[#,#2<#1-1&]&]],{n,0,30}]