OFFSET
1,2
COMMENTS
3-almost prime analogue of A072966, numbers which are not the sum of two semiprimes. In general, it seems that almost all even numbers can be written as the sum of two k-almost primes for any positive integer k. - T. D. Noe (noe(AT)sspectra.com), Nov 06 2006
MATHEMATICA
nn=10000; t3=Select[Range[2, nn], Plus@@Last/@FactorInteger[ # ]==3&]; t3sum=Table[0, {nn}]; Do[n=t3[[i]]+t3[[j]]; If[n<=nn, t3sum[[n]]=1], {i, Length[t3]}, {j, i, Length[t3]}]; Flatten[Position[t3sum, 0]] - T. D. Noe (noe(AT)sspectra.com), Nov 06 2006
CROSSREFS
KEYWORD
easy,fini,full,nonn
AUTHOR
Jonathan Vos Post (jvospost3(AT)gmail.com), Sep 27 2006
EXTENSIONS
Edited by T. D. Noe (noe(AT)sspectra.com), Nov 06 2006
STATUS
approved