OFFSET
1,2
EXAMPLE
For sum + product = 29 we have two possibilities: {2,9} and {4,5}, so 29 is not in the sequence.
For sum + product = 33 we have only {2,3,4}, so 33 is in the sequence.
MATHEMATICA
nn=100;
strfacs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[strfacs[n/d], Min@@#>d&]], {d, Rest[Divisors[n]]}]];
Join@@Position[Table[Length[Select[Join@@Array[strfacs, n], Total[#]+Times@@#==n&]], {n, nn}], 1]
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Gus Wiseman, Jan 14 2025
STATUS
approved