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

%I #12 Sep 08 2022 08:46:14

%S 7,45,67,145,411,825,1021,4039,9069,9789,12463,15137,26313,27499

%N Numbers n such that n!! - 32 is prime.

%C Corresponding primes are 73, 25373791335626257947657609343, ... .

%C a(15) > 50000.

%H Joe McLean, <a href="http://web.archive.org/web/20091027034731/http://uk.geocities.com/nassarawa%40btinternet.com/probprim2.htm">Interesting Sources of Probable Primes</a>

%t Select[Range[0, 50000], If[#!! - 32 > 0, PrimeQ[#!! - 32]] &]

%o (Magma) DoubleFactorial:=func< n | &*[n..2 by -2] >; [ n: n in [7..450] | IsPrime(DoubleFactorial(n) -32) ]; // _Vincenzo Librandi_, Oct 01 2015

%o (PARI) for(n=1, 1e4, if (isprime(prod(k=0, (n-1)\2, n - 2*k ) - 32),print1(n", "))) \\ _Altug Alkan_, Oct 01 2015

%Y Cf. A006882, A007749, A094144, A123910, A258616.

%K hard,more,nonn

%O 1,1

%A _Robert Price_, Sep 30 2015

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 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)