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”).

A350694
Numbers that can be written as p*q+r where p,q,r are primes (not necessarily distinct) such that p+q+r is prime.
2
7, 8, 11, 14, 16, 17, 18, 20, 22, 23, 24, 26, 28, 32, 34, 36, 38, 40, 41, 42, 44, 46, 47, 50, 52, 54, 56, 58, 62, 64, 66, 68, 70, 71, 72, 74, 76, 78, 80, 82, 83, 84, 86, 88, 90, 92, 94, 96, 98, 100, 101, 102, 104, 106, 107, 108, 110, 112, 113, 114, 116, 118, 120, 122, 124, 126, 128, 130, 131, 132
OFFSET
1,1
COMMENTS
Conjecture: the sequence contains all even positive integers except 2, 4, 6, 10, 12, 30, 48, 60.
LINKS
EXAMPLE
a(4) = 14 is a term because 14 = 3*3+5 where 3+3+5 = 11 is prime.
MAPLE
N:= 500: # for terms <= N
P:= select(isprime, [2, seq(i, i=3..N, 2)]):
PS:= convert(P, set):
nP:= nops(P):
S:= {}:
for i from 1 to nP do
for j from i to nP while P[i]*P[j] < N do
S:= S union select(`<=`, map(`+`, PS intersect map(`-`, PS, P[i]+P[j]), P[i]*P[j]), N)
od od:
sort(convert(S, list));
CROSSREFS
Odd terms are A046132.
Sequence in context: A277026 A309592 A090385 * A145826 A102963 A117619
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Jan 28 2022
STATUS
approved