VOOZH about

URL: https://oeis.org/A049483

⇱ A049483 - OEIS


login
A049483
Primes p such that p + 2310 is also prime, where 2310 is the 5th primorial number A002110(5).
5
23, 29, 31, 37, 41, 47, 61, 67, 71, 73, 79, 83, 89, 101, 107, 113, 127, 131, 137, 149, 157, 163, 167, 193, 211, 229, 233, 239, 241, 269, 281, 283, 307, 311, 337, 347, 349, 353, 367, 373, 379, 383, 389, 397, 401, 409, 419, 421, 431, 439, 443, 457, 467, 479
OFFSET
1,1
COMMENTS
p and p+2310 are not necessarily consecutive primes.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Harvey P. Dale)
EXAMPLE
23 is a term since it is prime and 23 + 2310 = 2333 is also prime.
MATHEMATICA
Select[Prime[Range[100]], PrimeQ[#+2310]&] (* Harvey P. Dale, Nov 15 2012 *)
PROG
(PARI) isok(p) = isprime(p) && isprime(p + 2310); \\ Amiram Eldar, Mar 15 2025
KEYWORD
nonn
AUTHOR
STATUS
approved