OFFSET
1,3
COMMENTS
EXAMPLE
a(10) = 11 since there is no way to represent 11 as a sum of two semiprimes. 13 is not a term since 13 = 4 + 9.
MATHEMATICA
lim = 10000;
s = Select[Range[lim], PrimeOmega[#] == 2 &];
c = Map[Total, Union[Subsets[s, {2}], Table[{s[[i]], s[[i]]}, {i, 1, Length[s]}]]];
Join[Complement[Range[0, lim], c], ">", lim ](* Robert Price, Mar 30 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Lior Manor, Aug 13 2002
STATUS
approved