A363484 Number of integer partitions of n covering an initial interval of positive integers with a unique mode.
0, 1, 1, 1, 2, 3, 2, 5, 6, 6, 8, 11, 12, 17, 20, 21, 27, 35, 38, 50, 56, 65, 76, 95, 105, 125, 146, 167, 198, 233, 252, 305, 351, 394, 457, 522, 585, 681, 778, 878, 994, 1135, 1269, 1446, 1638, 1828, 2067, 2339, 2613, 2940, 3301, 3684, 4143, 4634, 5156, 5771
Offset: 0
Keywords
Examples
The a(1) = 1 through a(8) = 6 partitions: (1) (11) (111) (211) (221) (21111) (2221) (3221) (1111) (2111) (111111) (3211) (22211) (11111) (22111) (32111) (211111) (221111) (1111111) (2111111) (11111111)
Crossrefs
The complement is counted by A363485.
Programs
-
Mathematica
Table[If[n==0,0,Length[Select[IntegerPartitions[n], Union[#]==Range[Max@@#]&&Length[Commonest[#]]==1&]]],{n,0,30}]
Comments