A265200 Numbers n such that n!3 + 3^7 is prime, where n!3 = n!!! is a triple factorial number (A007661).
8, 10, 11, 13, 16, 19, 20, 22, 37, 38, 47, 73, 92, 94, 100, 218, 241, 284, 482, 541, 736, 787, 829, 916, 1147, 1312, 1856, 1928, 2035, 3134, 4958, 5503, 8042, 16898, 16987, 24548, 25076, 35086
Offset: 1
Examples
11!3 + 3^7 = 11*8*5*2 + 2187 = 3067 is prime, so 11 is in the sequence.
Links
- Henri & Renaud Lifchitz, PRP Records. Search for n!3+2187.
- Joe McLean, Interesting Sources of Probable Primes
- OpenPFGW Project, Primality Tester
Programs
-
Mathematica
MultiFactorial[n_, k_] := If[n < 1, 1, If[n < k + 1, n, n*MultiFactorial[n - k, k]]]; Select[Range[0, 50000], PrimeQ[MultiFactorial[#, 3] + 3^7] &] Select[Range[35100],PrimeQ[Times@@Range[#,1,-3]+2187]&] (* Harvey P. Dale, Oct 19 2023 *)
-
PARI
tf(n) = prod(i=0, (n-1)\3, n-3*i); for(n=1, 1e4, if(ispseudoprime(tf(n) + 3^7), print1(n , ", "))) \\ Altug Alkan, Dec 04 2015
Comments