A379670 Numbers that are not the sum + product of any multiset of positive integers > 1. Zeros of A379669.
2, 3, 5, 7, 9, 13, 21, 25, 37, 45, 57, 81, 133, 157, 193, 225, 253, 273, 325, 477, 613, 1821
Offset: 1
Examples
The partition (3,2,2) has sum + product equal to 7 + 12 = 19, so 19 is not in the sequence.
Crossrefs
Programs
-
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]]
Comments