OFFSET
1,1
COMMENTS
Is this sequence infinite?
Are all terms odd except for 2?
All terms beyond 7 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 twice a prime. - Martin Fuller, Dec 19 2025
EXAMPLE
The partition (3,2,2) has sum + product equal to 7 + 12 = 19, so 19 is not in the sequence.
MATHEMATICA
nn=1000;
facs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[facs[n/d], Min@@#>=d&]], {d, Rest[Divisors[n]]}]];
Complement[Range[nn], Total[#]+Times@@#&/@Join@@Array[facs, nn]]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Jan 04 2025
STATUS
approved
