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-3 of 3 results.

A096177 Primes p such that primorial(p)/2 + 2 is prime.

Original entry on oeis.org

2, 3, 5, 7, 13, 29, 31, 37, 47, 59, 109, 223, 307, 389, 457, 1117, 1151, 2273, 9137, 10753, 15727, 25219, 26459, 29251, 30259, 52901, 194471
Offset: 1

Views

Author

Hugo Pfoertner, Jun 27 2004

Keywords

Comments

a(27) > 172000. - Robert Price, May 10 2019
Some of the results were computed using the PrimeFormGW (PFGW) primality-testing program. - Hugo Pfoertner, Nov 16 2019

Examples

			a(3)=7 because primorial(7)/2 + 2 = A070826(4) + 2 = 2*3*5*7/2 + 2 = 107 is prime.
		

Crossrefs

Cf. A070826, A096178 primes of the form primorial(p)/2+2, A096547 primes p such that primorial(p)/2-2 is prime, A067024 smallest p+2 that has n distinct prime factors, A014545 primorial primes, A087398.

Programs

  • Mathematica
    k = 1; Do[If[PrimeQ[n], k = k*n; If[PrimeQ[k/2 + 2], Print[n]]], {n, 2, 100000}] (* Ryan Propper, Jul 03 2005 *)
  • PARI
    P=1/2;forprime(p=2,1e4,if(isprime((P*=p)+2), print1(p", "))) \\ Charles R Greathouse IV, Mar 14 2011

Extensions

7 additional terms, corresponding to probable primes, from Ryan Propper, Jul 03 2005
Edited by T. D. Noe, Oct 30 2008
a(26) from Robert Price, May 10 2019
a(27) from Tyler Busby, Mar 17 2024

A096547 Primes p such that primorial(p)/2 - 2 is prime.

Original entry on oeis.org

5, 7, 11, 13, 17, 19, 23, 31, 41, 53, 71, 103, 167, 431, 563, 673, 727, 829, 1801, 2699, 4481, 6121, 7283, 9413, 10321, 12491, 17807, 30307, 31891, 71917, 172517
Offset: 1

Views

Author

Hugo Pfoertner, Jun 27 2004

Keywords

Comments

Some of the results were computed using the PrimeFormGW (PFGW) primality-testing program. - Hugo Pfoertner, Nov 14 2019
a(32) > 180000. - Tyler Busby, Mar 29 2024

Examples

			Prime 7 is a term because primorial(7)/2 - 2 = A034386(7)/2 - 2 = 2*3*5*7/2 - 2 = 103 is prime.
		

Crossrefs

Cf. A070826, A096177 primes p such that primorial(p)/2+2 is prime, A096178 primes of the form primorial(p)/2+2, A014545 primorial primes, A087398.
Cf. A034386.

Programs

  • Maple
    b:= proc(n) b(n):= `if`(n=0, 1, `if`(isprime(n), n, 1)*b(n-1)) end:
    q:= p-> isprime(p) and isprime(b(p)/2-2):
    select(q, [$1..500])[];
  • Mathematica
    k = 1; Do[k *= Prime[n]; If[PrimeQ[k - 2], Print[Prime[n]]], {n, 2, 3276}] (* Ryan Propper, Oct 25 2005 *)
    Prime[#]&/@Flatten[Position[FoldList[Times,Prime[Range[1000]]]/2-2,?PrimeQ]] (* _Harvey P. Dale, Jun 09 2023 *)

Extensions

5 more terms from Ryan Propper, Oct 25 2005
a(29)-a(31) from Tyler Busby, Mar 16 2024

A096178 Primes of the form primorial(p)/2+2.

Original entry on oeis.org

3, 5, 17, 107, 15017, 3234846617, 100280245067, 3710369067407, 307444891294245707, 961380175077106319537, 139867498408927468089138080936033904837498617
Offset: 1

Views

Author

Hugo Pfoertner, Jun 27 2004

Keywords

Comments

Primes of the form A070826(n)+2.

Examples

			a(4) = 107 because 107 is a prime of the form primorial(7)/2 + 2 = A070826(4) + 2 = 2*3*5*7/2 + 2.
		

Crossrefs

Cf. A070826, A096177 (primorial(p)/2+2 is prime), A096547 (primorial(p)/2-2 is prime), A067024 (smallest p+2 that has n distinct prime factors), A014545 (primorial primes), A087398.

Programs

  • PARI
    for(n=1,30,p=prod(k=1,n,prime(k))/2+2;if(ispseudoprime(p),print1(p,", "))) \\ Hugo Pfoertner, Dec 26 2019

Formula

a(n) = A070826(A096177(n)) + 2. - Amiram Eldar, Dec 26 2019

Extensions

a(1) inserted by Amiram Eldar, Dec 26 2019
Showing 1-3 of 3 results.