VOOZH
about
URL: https://oeis.org/A338578
⇱ A338578 - OEIS
login
A338578
Primes p such that (r-p)*(r-q) > r, where q and r are the next two primes.
2
2, 3, 5, 11, 17, 19, 29, 43, 47, 83, 109, 199, 283
(
list
;
graph
;
refs
;
listen
;
history
;
text
;
internal format
)
OFFSET
1,1
COMMENTS
a(14) > 10^8 if it exists.
As soon as the prime gap grows slow enough, for all large enough p we have (r-p)*(r-q) <= r, implying finiteness of this sequence. In particular, finiteness would follow from Cramer's conjecture. -
Max Alekseyev
, Nov 09 2024
LINKS
Table of n, a(n) for n=1..13.
EXAMPLE
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.
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;
CROSSREFS
Contains
A338566
.
Cf.
A013632
,
A105161
,
A338577
.
Sequence in context:
A245639
A362239
A147813
*
A274386
A079545
A154755
Adjacent sequences:
A338575
A338576
A338577
*
A338579
A338580
A338581
KEYWORD
nonn
,
more
AUTHOR
Robert Israel
, Nov 03 2020
STATUS
approved