OFFSET
1,1
EXAMPLE
4 and 12 are two distinct numbers that are averages of twin prime pairs (i.e., 4 = (3+5)/2 and 12 = (11+13)/2), and 4*12 = 48, which is in the sequence.
MATHEMATICA
m = 1 + Select[Range@1000, PrimeQ[#] && PrimeQ[# + 2] &]; Select[v Union@ Flatten@ Table[m[[i]] m[[j]], {i, Length[m]}, {j, i - 1}], # <= 4000 &] (* Giovanni Resta, Jun 13 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Jun 12 2017
EXTENSIONS
More terms from Giovanni Resta, Jun 13 2017
STATUS
approved