login
A364841
Number of subsets S of {1..n} containing no element equal to the sum of a k-multiset of elements of S, for any 2 <= k <= |S|.
1
1, 2, 3, 6, 9, 15, 21, 34, 49, 75, 105, 165, 222, 344, 466, 702, 944, 1452, 1912, 2940, 3950, 5888, 7910, 12160, 15971, 24559, 33008, 49476, 66164, 101556, 134219, 205807, 275333, 413698, 555455, 849598, 1121920, 1715401, 2299986, 3458692, 4623565, 7052955, 9347017
OFFSET
0,2
LINKS
EXAMPLE
The a(0) = 1 through a(5) = 15 subsets:
{} {} {} {} {} {}
{1} {1} {1} {1} {1}
{2} {2} {2} {2}
{3} {3} {3}
{1,3} {4} {4}
{2,3} {1,3} {5}
{1,4} {1,3}
{2,3} {1,4}
{3,4} {1,5}
{2,3}
{2,5}
{3,4}
{3,5}
{4,5}
{3,4,5}
MATHEMATICA
Table[Length[Select[Subsets[Range[n]], Intersection[#, Join@@Table[Total/@Tuples[#, k], {k, 2, Length[#]}]]=={}&]], {n, 0, 10}]
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 15 2023
EXTENSIONS
More terms from Bert Dobbelaere, Mar 21 2026
STATUS
approved