A384392 Number of integer partitions of n whose distinct parts are maximally refined.
1, 1, 2, 2, 4, 6, 7, 10, 14, 20, 24, 33, 41, 55, 70, 88, 110, 140, 171, 214, 265, 324, 397, 485, 588, 711, 861, 1032, 1241, 1486, 1773
Offset: 0
Examples
The a(1) = 1 through a(8) = 14 partitions: (1) (2) (21) (22) (32) (222) (322) (332) (11) (111) (31) (41) (321) (331) (431) (211) (221) (411) (421) (521) (1111) (311) (2211) (2221) (2222) (2111) (3111) (3211) (3221) (11111) (21111) (4111) (3311) (111111) (22111) (4211) (31111) (22211) (211111) (32111) (1111111) (41111) (221111) (311111) (2111111) (11111111)
Crossrefs
Programs
-
Mathematica
nonsets[y_]:=If[Length[y]==0,{},Rest[Subsets[Complement[Range[Max@@y],y]]]]; Table[Length[Select[IntegerPartitions[n],Intersection[#,Total/@nonsets[#]]=={}&]],{n,0,15}]
Comments