OFFSET
0,3
COMMENTS
From Gus Wiseman, Aug 09 2023: (Start)
Includes all knapsack partitions (A108917), but first differs at a(12) = 28, A108917(12) = 25. The difference is accounted for by the non-knapsack partitions: (4332), (5331), (33222).
These are partitions not containing the sum of any non-singleton submultiset of the parts, a variation of non-binary sum-free partitions where parts cannot be re-used, ranked by A364531. The complement is counted by A237668. The binary version is A236912. For re-usable parts we have A364350.
(End)
LINKS
Giovanni Resta, Table of n, a(n) for n = 0..100
Giovanni Resta, C program for computing a(0)-a(100)
EXAMPLE
For n = 6, the nonqualifiers are 123, 1113, 1122, 11112, leaving a(6) = 7.
From Gus Wiseman, Aug 09 2023: (Start)
The partition y = (5,3,1,1) has submultiset (3,1,1) with sum in y, so is not counted under a(10).
The partition y = (5,3,3,1) has no non-singleton submultiset with sum in y, so is counted under a(12).
The a(1) = 1 through a(8) = 12 partitions:
(1) (2) (3) (4) (5) (6) (7) (8)
(11) (21) (22) (32) (33) (43) (44)
(111) (31) (41) (42) (52) (53)
(1111) (221) (51) (61) (62)
(311) (222) (322) (71)
(11111) (411) (331) (332)
(111111) (421) (521)
(511) (611)
(2221) (2222)
(4111) (3311)
(1111111) (5111)
(11111111)
(End)
MATHEMATICA
Map[Count[Map[MemberQ[#, Apply[Alternatives, Map[Apply[Plus, #]&, DeleteDuplicates[DeleteCases[Subsets[#], _?(Length[#]<2&)]]]]]&, IntegerPartitions[#]], False]&, Range[20]] (* Peter J. C. Moses, Feb 10 2014 *)
Table[Length[Select[IntegerPartitions[n], Intersection[#, Total/@Subsets[#, {2, Length[#]}]]=={}&]], {n, 0, 15}] (* Gus Wiseman, Aug 09 2023 *)
CROSSREFS
These partitions have ranks A364531.
KEYWORD
nonn
AUTHOR
Clark Kimberling, Feb 11 2014
EXTENSIONS
a(21)-a(53) from Giovanni Resta, Feb 22 2014
STATUS
approved