The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A262772 Numbers n such that n!! - 32 is prime. 5
7, 45, 67, 145, 411, 825, 1021, 4039, 9069, 9789, 12463, 15137, 26313, 27499 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Corresponding primes are 73, 25373791335626257947657609343, ... .
a(15) > 50000.
LINKS
MATHEMATICA
Select[Range[0, 50000], If[#!! - 32 > 0, PrimeQ[#!! - 32]] &]
PROG
(Magma) DoubleFactorial:=func< n | &*[n..2 by -2] >; [ n: n in [7..450] | IsPrime(DoubleFactorial(n) -32) ]; // Vincenzo Librandi, Oct 01 2015
(PARI) for(n=1, 1e4, if (isprime(prod(k=0, (n-1)\2, n - 2*k ) - 32), print1(n", "))) \\ Altug Alkan, Oct 01 2015
CROSSREFS
Sequence in context: A327680 A156374 A171493 * A153492 A107125 A212105
KEYWORD
hard,more,nonn
AUTHOR
Robert Price, Sep 30 2015
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 June 6 15:39 EDT 2024. Contains 373131 sequences. (Running on oeis4.)