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”).

A288614
Primes of the form k!6+18, where k!6 is the sextuple factorial number (A085158).
1
19, 23, 73, 109, 953, 1747, 21523, 1339993, 49579093, 894930593, 104463111043, 3879320022245629336393, 131181879631714694053764558690643, 5685668465320307573857236025777988251766371484393, 164577616892349380880997566903814398769391101461559752758998046893
OFFSET
1,1
LINKS
MATHEMATICA
MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
Select[Table[MultiFactorial[i, 6] + 18, {i, 0, 100}], PrimeQ[#]&]
Select[Table[(Times@@Range[k, 1, -6])+18, {k, 250}], PrimeQ] (* Harvey P. Dale, Dec 14 2021 *)
CROSSREFS
Cf. A288445.
Sequence in context: A039292 A043115 A043895 * A033214 A107185 A240585
KEYWORD
nonn
AUTHOR
Robert Price, Jun 11 2017
STATUS
approved