OFFSET
0,3
COMMENTS
Given any partition, the following are equivalent:
1) The distinct parts are maximally refined.
2) Every strict partition of a part contains a part. In other words, if y is the set of parts and z is any strict partition of any element of y, then z must contain at least one element from y.
3) No part is a sum of distinct non-parts.
EXAMPLE
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)
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}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Jun 07 2025
STATUS
approved
