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!)
A088256 Primorial numbers k such that both k-1 and k+1 are prime. 4
6, 30, 2310 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Conjecture: sequence is finite.
No more terms in the first 300 primorials. - David Wasserman, Jul 25 2005
Search extended to first 700 primorials by Michael De Vlieger, Aug 31 2016
Intersection of A014574 and A002110. - Michel Marcus, Dec 03 2016
Search extended to first 3000 primorials. - Josey Stevens, Aug 10 2021
The first more than 230000 primorial numbers k have been checked for whether k-1 or k+1 or both are primes. See links. If another term k exists, it is over about 10^1400000. - Jeppe Stig Nielsen, Oct 19 2021
LINKS
Chris K. Caldwell, The Top Twenty: Primorial, in the Prime Pages.
EXAMPLE
210 = primorial(4) is not a member as 209 is composite.
MAPLE
f:= proc(n)
local P;
P:= mul(seq(ithprime(i), i=1..n));
if isprime(P+1) and isprime(P-1) then P else NULL fi
end proc:
map(f, [$1..300]); # Robert Israel, Aug 31 2016
MATHEMATICA
Select[Times @@ # & /@ Prime@ Range@ Range@ 700, Times @@ Boole@ PrimeQ@ {# - 1, # + 1} == 1 &] (* Michael De Vlieger, Aug 31 2016 *)
Select[FoldList[Times, Prime[Range[20]]], AllTrue[#+{1, -1}, PrimeQ]&] (* Harvey P. Dale, Mar 31 2023 *)
PROG
(PARI) lista(nn) = for (n=1, nn, pr = prod(i=1, n, prime(i)); if (isprime(pr-1) && isprime(pr+1), print1(pr, ", "))); \\ Michel Marcus, Aug 31 2016
CROSSREFS
Sequence in context: A222718 A200894 A202861 * A136349 A119411 A036285
KEYWORD
more,nonn,bref
AUTHOR
Amarnath Murthy, Sep 27 2003
EXTENSIONS
Corrected by Ray Chandler, Sep 28 2003
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 25 11:06 EDT 2024. Contains 371967 sequences. (Running on oeis4.)