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!)
A350496 Positive integers k such that if p is the largest prime less than k then k - p is prime. 1
5, 7, 9, 10, 13, 15, 16, 19, 21, 22, 25, 26, 28, 31, 33, 34, 36, 39, 40, 43, 45, 46, 49, 50, 52, 55, 56, 58, 61, 63, 64, 66, 69, 70, 73, 75, 76, 78, 81, 82, 85, 86, 88, 91, 92, 94, 96, 99, 100, 103, 105, 106, 109, 111, 112, 115, 116, 118, 120, 124, 126, 129 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) is prime only when n is the greater of a twin prime pair (A006512). All other terms are composite.
LINKS
EXAMPLE
9 is a term because the previous prime < 9 is 7, and 9 - 7 = 2, which is prime.
MATHEMATICA
Select[Range[2, 130], PrimeQ[# - NextPrime[#, -1]] &] (* Amiram Eldar, Jan 02 2022 *)
PROG
(Python)
from sympy import isprime, prevprime
def ok(n): return n > 2 and isprime(n-prevprime(n))
print([k for k in range(249) if ok(k)]) # Michael S. Branicky, Jan 01 2022
(PARI) isok(k) = if (k>2, my(q=precprime(k-1)); isprime(k-q)); \\ Michel Marcus, Jan 02 2022
CROSSREFS
Sequence in context: A018935 A039501 A114255 * A358314 A138579 A189703
KEYWORD
nonn
AUTHOR
Ryan Bresler, Jan 01 2022
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 August 26 21:09 EDT 2024. Contains 375462 sequences. (Running on oeis4.)