login
A289700
Numbers k such that k!6 - 36 is prime, where k!6 is the sextuple factorial number (A085158).
1
11, 19, 25, 55, 61, 113, 131, 133, 439, 529, 1079, 1621, 2609, 2825, 3997, 4235, 5081, 7319, 8365, 9023, 10273, 18095, 18199, 22625, 24535, 27229, 28883, 99877
OFFSET
1,1
COMMENTS
Corresponding primes are: 19, 1693, 43189, 5745471106339, 350473737488839, ...
a(29) > 10^5.
Terms > 25 correspond to probable primes.
EXAMPLE
19!6 - 36 = 19*13*7*1 - 36 = 1693 is prime, so 19 is in the sequence.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[10, 50000], PrimeQ[MultiFactorial[#, 6] - 36] &]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Jul 09 2017
EXTENSIONS
a(28) from Robert Price, Nov 28 2018
STATUS
approved