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.

A051651 Primes of the form 30030*p + 1 where p is a prime.

Original entry on oeis.org

150151, 330331, 390391, 870871, 930931, 1231231, 1411411, 1831831, 2012011, 2372371, 2672671, 3813811, 4174171, 4474471, 5375371, 5435431, 5735731, 5915911, 8078071, 9219211, 10120111, 10420411, 11021011, 11501491, 12642631, 14024011, 14624611, 16246231, 16426411
Offset: 1

Views

Author

Keywords

Comments

Generalization of A005385; can be called 30030-safe primes.
A002110(6)*p + 1 = 30030*p + 1 (prime).

Examples

			390391 is a term because 390391 = 2*3*5*7*11*13*p + 1 is prime, where p = 13.
		

Crossrefs

Programs

  • Mathematica
    Select[30030Prime[Range[100]]+1,PrimeQ] (* Harvey P. Dale, Dec 09 2010 *)
  • PARI
    isok(k) = isprime(k) && k % 30030 == 1 && isprime((k-1)/30030); \\ Amiram Eldar, Feb 24 2025

Formula

a(n) = 30030 * A051654(n) + 1. - Amiram Eldar, Feb 24 2025