A258452 Numbers n such that n!! - 512 is prime.
9, 11, 21, 23, 45, 65, 79, 153, 155, 199, 361, 799, 883, 1237, 1253, 1753, 4975, 5117, 5843, 8179, 12831
Offset: 1
Links
- Joe McLean, Interesting Sources of Probable Primes
Programs
-
Mathematica
Select[Range[0, 50000], If[#!! - 512 > 0, PrimeQ[#!! - 512]] &]
-
PARI
for(n=1, 1e4, if (ispseudoprime(m=prod(k=0, (n-1)\2, n - 2*k) - 512), print1(n", "))) \\ Altug Alkan, Nov 06 2015
Comments