OFFSET
1,1
COMMENTS
Is this sequence infinite?
Are all terms odd except for 2?
EXAMPLE
The set {2,3,4} has sum + product equal to 9 + 24 = 33, so 33 is not in the sequence.
MATHEMATICA
nn=1000;
strfacs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[strfacs[n/d], Min@@#>d&]], {d, Rest[Divisors[n]]}]];
Complement[Range[nn], Total[#]+Times@@#&/@Join@@Array[strfacs, nn]]
CROSSREFS
KEYWORD
AUTHOR
Gus Wiseman, Jan 04 2025
STATUS
approved