cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A049484 Primes p such that p + 30030 is also prime, where 30030 is the 6th primorial number A002110(6).

Original entry on oeis.org

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

Views

Author

Keywords

Comments

p and p+30030 are not necessarily consecutive primes.

Examples

			17 is a term since it is prime and 17 + 30030 = 30047 is also prime.
		

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[150]],PrimeQ[#+30030]&] (* Harvey P. Dale, Sep 21 2022 *)
  • PARI
    isok(p) = isprime(p) && isprime(p + 30030); \\ Amiram Eldar, Mar 15 2025