OFFSET
1,1
COMMENTS
Is this sequence infinite?
Are all terms odd except for 2?
All terms beyond 15 are of the form 2p-1 where p is prime. All even numbers beyond 2 can be obtained from {m} -> 2m. For odd numbers, if n+1 = ab with 2 < a < b, then {a-1,b-1} -> ab-1 = n. This can be achieved unless n+1 is 8 or 16 or twice a prime. - Martin Fuller, Dec 19 2025
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
