login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A088709
Numbers m that are a product of two primes j and k such that m+j+k is prime.
4
6, 10, 14, 15, 21, 26, 33, 34, 35, 38, 46, 51, 55, 57, 58, 65, 74, 85, 86, 93, 111, 118, 123, 141, 143, 145, 155, 158, 161, 166, 177, 178, 185, 194, 201, 203, 205, 206, 209, 215, 221, 254, 267, 278, 295, 298, 319, 321, 323, 326, 327, 329, 334, 341, 346, 355, 365
OFFSET
1,1
LINKS
EXAMPLE
a(2)=10 because 10 has only one pair of prime factors (2 and 5) and 10 + 2 + 5 = 17, which is prime.
MATHEMATICA
ptpQ[n_]:=Module[{fi=FactorInteger[n]}, Length[fi]==2&&Union[ fi[[All, 2]]] == {1}&&PrimeQ[n+Total[fi[[All, 1]]]]]; Select[Range[400], ptpQ] (* Harvey P. Dale, Nov 06 2020 *)
CROSSREFS
Cf. A001358.
Sequence in context: A093772 A046400 A100660 * A225706 A063078 A064452
KEYWORD
nonn
AUTHOR
Chuck Seggelin (barkeep(AT)plastereddragon.com), Oct 11 2003
STATUS
approved