login
A049484
Primes p such that p + 30030 is also prime, where 30030 is the 6th primorial number A002110(6).
5
17, 29, 41, 59, 61, 67, 73, 79, 83, 89, 103, 107, 109, 131, 139, 151, 157, 167, 173, 181, 193, 211, 223, 229, 239, 241, 263, 277, 283, 293, 311, 317, 337, 359, 373, 397, 401, 419, 439, 461, 463, 467, 479, 487, 499, 509, 523, 547, 563, 601, 607, 613, 619, 631
OFFSET
1,1
COMMENTS
p and p+30030 are not necessarily consecutive primes.
LINKS
EXAMPLE
17 is a term since it is prime and 17 + 30030 = 30047 is also prime.
MATHEMATICA
Select[Prime[Range[150]], PrimeQ[#+30030]&] (* Harvey P. Dale, Sep 21 2022 *)
PROG
(PARI) isok(p) = isprime(p) && isprime(p + 30030); \\ Amiram Eldar, Mar 15 2025
KEYWORD
nonn
AUTHOR
STATUS
approved