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

A288891
Primes of the form k!6+2, where k!6 is the sextuple factorial number (A085158).
1
3, 5, 7, 29, 937, 229637, 13299311027, 678264862277, 2229272062327, 8260613413473469333910627, 204676724960380351177777255683652821505300292407056383439453127, 359539042675600162641430486036393282148945045174959856388131309765627
OFFSET
1,1
LINKS
MATHEMATICA
MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
Select[Table[MultiFactorial[i, 6] + 2, {i, 0, 100}], PrimeQ[#]&]
Select[Table[Times@@Range[n, 1, -6]+2, {n, 250}], PrimeQ] (* Harvey P. Dale, Nov 20 2024 *)
CROSSREFS
Cf. A287207.
Sequence in context: A106920 A060273 A124077 * A358699 A322749 A270269
KEYWORD
nonn
AUTHOR
Robert Price, Jun 18 2017
STATUS
approved