login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A279646
Numbers k such that k!6 - 3 is prime, where k!6 is the sextuple factorial number (A085158).
1
5, 6, 8, 10, 68, 82, 92, 98, 118, 286, 796, 878, 1360, 1502, 1516, 1568, 1646, 3628, 3716, 4048, 7982, 12776, 18070, 20594, 29902, 39632, 52988, 53864, 55610, 67448, 85402, 89762
OFFSET
1,1
COMMENTS
Corresponding primes are: 2, 3, 13, 37, 73569236156415997, ...
a(33) > 10^5.
Terms > 10 correspond to probable primes.
EXAMPLE
10!6 - 3 = 10*4 - 3 = 37 is prime, so 10 is in the sequence.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[4, 50000], PrimeQ[MultiFactorial[#, 6] - 3] &]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Jul 07 2017
EXTENSIONS
a(27)-a(32) from Robert Price, Aug 03 2018
STATUS
approved