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

A288715
Primes of the form k!8+1, where k!8 is the octuple factorial number (A114800).
1
2, 3, 5, 7, 26881, 55441, 96909121, 132843110401, 48704929136641, 152349556104345601, 1397121162877440001, 383414179456168545484801, 81419177249980419349301811609600001, 13189906714496827934586893480755200001
OFFSET
1,1
LINKS
MATHEMATICA
MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
Select[Table[MultiFactorial[i, 8] + 1, {i, 0, 100}], PrimeQ[#]&]
Select[Table[Times@@Range[n, 1, -8]+1, {n, 200}], PrimeQ] (* Harvey P. Dale, Dec 26 2022 *)
CROSSREFS
Cf. A204661.
Sequence in context: A037948 A007659 A375936 * A208361 A145380 A136740
KEYWORD
nonn
AUTHOR
Robert Price, Jun 13 2017
STATUS
approved