login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A096547 Primes p such that primorial(p)/2 - 2 is prime. 5
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
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
LINKS
EXAMPLE
Prime 7 is a term because primorial(7)/2 - 2 = A034386(7)/2 - 2 = 2*3*5*7/2 - 2 = 103 is prime.
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 *)
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.
Sequence in context: A230227 A101635 A118941 * A216524 A128824 A098420
KEYWORD
nonn,more,hard
AUTHOR
Hugo Pfoertner, Jun 27 2004
EXTENSIONS
5 more terms from Ryan Propper, Oct 25 2005
a(29)-a(31) from Tyler Busby, Mar 16 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 26 16:30 EDT 2024. Contains 372003 sequences. (Running on oeis4.)