login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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.
LINKS
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.
Sequence in context: A245639 A362239 A147813 * A274386 A079545 A154755
KEYWORD
nonn,more
AUTHOR
Robert Israel, Nov 03 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 11:37 EDT 2024. Contains 371968 sequences. (Running on oeis4.)