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

A289729
Primes of the form k!6-9, where k!6 is the sextuple factorial number (A085158).
1
7, 31, 631, 14071, 116471, 24663654391, 1282510028791, 17450008575991, 333247405883391991, 5444123475574783991
OFFSET
1,1
LINKS
Henri & Renaud Lifchitz, PRP Records.Search for n!6-9.
OpenPFGW Project, Primality Tester
MATHEMATICA
MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
Select[Table[MultiFactorial[i, 6] - 9, {i, 8, 100}], PrimeQ[#]&]
Select[Table[Times@@Range[n, 1, -6]-9, {n, 8, 100}], PrimeQ] (* Harvey P. Dale, Aug 21 2023 *)
CROSSREFS
Cf. A289687.
Sequence in context: A139287 A139307 A197451 * A197301 A280038 A253640
KEYWORD
nonn
AUTHOR
Robert Price, Jul 10 2017
STATUS
approved