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.

Showing 1-5 of 5 results.

A049481 Primes p such that p + 30 is also prime.

Original entry on oeis.org

7, 11, 13, 17, 23, 29, 31, 37, 41, 43, 53, 59, 67, 71, 73, 79, 83, 97, 101, 107, 109, 127, 137, 149, 151, 163, 167, 181, 193, 197, 199, 211, 227, 233, 239, 241, 251, 263, 277, 281, 283, 307, 317, 337, 349, 353, 359, 367, 379, 389, 401, 409, 419, 431, 433, 449
Offset: 1

Views

Author

Keywords

Comments

30 = A002110(3) is the 3rd primorial number.
p and p+30 are not necessarily consecutive primes. Initial segment of A045320 is identical, but 113 is not in this sequence because 113 + 30 = 143 is divisible by 13.

Examples

			7 is a term since it is prime and 7 + 30 = 37 is also prime.
		

Crossrefs

Programs

Formula

Assuming Polignac's conjecture and the first Hardy-Littlewood conjecture: Limit_{n->oo} n*log(a(n))/primepi(a(n)) = (16/3)*A005597 = 3.52086... . - Alain Rocchelli, Oct 29 2024

A049485 Primes p such that p + 510510 is also prime, where 510510 is the 7th primorial number A002110(7).

Original entry on oeis.org

19, 41, 43, 59, 71, 73, 79, 101, 103, 107, 109, 167, 173, 181, 197, 199, 241, 257, 263, 283, 293, 307, 313, 317, 337, 379, 397, 409, 421, 431, 433, 479, 491, 503, 509, 523, 547, 577, 599, 601, 613, 641, 643, 653, 659, 661, 683, 691, 701, 727, 733, 751, 769
Offset: 1

Views

Author

Keywords

Comments

p and p+510510 are not necessarily consecutive primes.

Examples

			19 is a term since it is prime and 19 + 510510 = 510529 is also prime.
		

Crossrefs

Programs

A049483 Primes p such that p + 2310 is also prime, where 2310 is the 5th primorial number A002110(5).

Original entry on oeis.org

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

Views

Author

Keywords

Comments

p and p+2310 are not necessarily consecutive primes.

Examples

			23 is a term since it is prime and 23 + 2310 = 2333 is also prime.
		

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[100]],PrimeQ[#+2310]&] (* Harvey P. Dale, Nov 15 2012 *)
  • PARI
    isok(p) = isprime(p) && isprime(p + 2310); \\ Amiram Eldar, Mar 15 2025

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

A176115 Numbers n such that 2310*n-1, 2310*n+1 are twin primes, (2310=2*3*5*7*11).

Original entry on oeis.org

1, 4, 5, 11, 15, 19, 24, 34, 40, 48, 51, 58, 66, 73, 78, 97, 98, 100, 106, 109, 116, 117, 123, 129, 130, 134, 136, 137, 143, 163, 169, 175, 176, 180, 182, 186, 194, 201, 207, 222, 226, 228, 234, 239, 248, 271, 274, 275, 279, 285, 286, 295, 305, 313, 320, 347
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Range[6! ],PrimeQ[2310*#-1]&&PrimeQ[2310*#+1]&]
Showing 1-5 of 5 results.