OFFSET
1,1
COMMENTS
Corresponding primes are: 557, 743, 1097, 10457, 66347, 209357, 151413137, ...
a(35) > 10^5.
Terms > 35 correspond to probable primes.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!4+512.
Joe McLean, Interesting Sources of Probable Primes
OpenPFGW Project, Primality Tester
EXAMPLE
11!4 + 2^9 = 11*7*3*1 + 512 = 743 is prime, so 11 is in the sequence.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[0, 50000], PrimeQ[MultiFactorial[#, 4] + 2^9] &]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Aug 22 2017
STATUS
approved