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-4 of 4 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

A154114 Primes p such that p + 9699690 is also prime, where 9699690 is the 8th primorial number A002110(8).

Original entry on oeis.org

23, 37, 41, 43, 59, 73, 79, 83, 109, 113, 127, 137, 151, 163, 197, 199, 223, 227, 229, 233, 239, 251, 263, 269, 283, 313, 337, 349, 373, 383, 389, 409, 421, 449, 457, 463, 479, 523, 557, 599, 617, 647, 691, 727, 739, 743, 751, 757, 761, 773, 797, 811, 821
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(1000) | IsPrime(p+9699690)]; // Vincenzo Librandi, Sep 02 2016
    
  • Mathematica
    lst={};Do[p=Prime[n];If[PrimeQ[p+9699690],AppendTo[lst,p]],{n,6!}];lst
    Select[Prime[Range[200]],PrimeQ[#+9699690]&]  (* Harvey P. Dale, Apr 26 2011 *)
  • PARI
    is(n)=isprime(n+9699690) && isprime(n) \\ Charles R Greathouse IV, Sep 02 2016

Formula

a(n) >> n log^2 n. - Charles R Greathouse IV, Sep 02 2016

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
Showing 1-4 of 4 results.