A338578 Primes p such that (r-p)*(r-q) > r, where q and r are the next two primes.
2, 3, 5, 11, 17, 19, 29, 43, 47, 83, 109, 199, 283
Offset: 1
Examples
a(5)=17 is a member because it is prime, the next two primes are 19 and 23, and (23-17)*(23-19)=24 > 23.
Programs
-
Maple
p:= 0: q:=2:r:= 3: R:= NULL: while p < 10^4 do p:= q: q:= r: r:= nextprime(r); if (r-q)*(r-p) > r then R:= R, p; fi od: R;
Comments