OFFSET
1,1
COMMENTS
Conjecture: the sequence contains all even positive integers except 2, 4, 6, 10, 12, 30, 48, 60.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
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
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Jan 28 2022
STATUS
approved