OFFSET
1,1
COMMENTS
A087942(a(n)) = 0.
Assuming Goldbach's conjecture that every even number greater than 2 is the sum of two primes, these are the numbers that are the product of two primes but not the sum of two primes. - Michael B. Porter, Feb 08 2013
LINKS
Bill McEachen, Table of n, a(n) for n = 1..10000
MATHEMATICA
Take[Select[Union[Flatten[Table[Prime[i] Prime[j], {i, 2, 25}, {j, 2, 25}]]], Not[PrimeQ[# - 2]] &], 50] (* Alonso del Arte, Feb 08 2013 *)
PROG
(PARI) isok(m) = (m%2) && (bigomega(m)==2) && !isprime(m-2); \\ Michel Marcus, Oct 19 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Oct 28 2003
STATUS
approved