login
A289685
Numbers k such that k!6 - 6 is prime, where k!6 is the sextuple factorial number (A085158).
1
17, 19, 23, 31, 37, 47, 65, 151, 157, 251, 283, 371, 391, 635, 779, 799, 1517, 1799, 3355, 24619, 40375, 40793, 53135, 79427
OFFSET
1,1
COMMENTS
Corresponding primes are: 929, 1723, 21499, 1339969, 49579069, 42061737019, ...
a(25) > 10^5.
Terms > 65 correspond to probable primes.
EXAMPLE
17!6 - 6 = 17*11*5 - 6 = 929 is prime, so 17 is in the sequence.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[6, 50000], PrimeQ[MultiFactorial[#, 6] - 6] &]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Jul 09 2017
EXTENSIONS
a(23)-a(24) from Robert Price, Aug 03 2018
STATUS
approved