A379680 Numbers that are not the sum + product of any set of positive integers > 1. Zeros of A379679.
2, 3, 5, 7, 9, 13, 15, 21, 25, 37, 45, 57, 81, 93, 121, 133, 157, 165, 193, 217, 225, 253, 273, 297, 325, 477, 525, 613, 981, 1201, 1213, 1317, 1813, 1821, 2401, 4273, 5113, 5905, 7477
Offset: 1
Examples
The set {2,3,4} has sum + product equal to 9 + 24 = 33, so 33 is not in the sequence.
Crossrefs
Programs
-
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]]
Comments