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

A291687
Primes of the form k!4+4, where k!4 is the quadruple factorial number (A007662).
1
5, 7, 3469, 9949, 65839, 1514209, 5221129, 40883539, 151412629, 44358635479, 16713607661375629, 36453104912477522894629, 1027438963906784290227656915629, 7419136758370889359733910587728129, 4551830726072842264843919206776501006328129
OFFSET
1,1
LINKS
MATHEMATICA
MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
Select[Table[MultiFactorial[i, 4] + 4, {i, 0, 100}], PrimeQ[#]&]
CROSSREFS
Cf. A291122.
Sequence in context: A370190 A176599 A309409 * A257774 A281386 A090817
KEYWORD
nonn
AUTHOR
Robert Price, Aug 29 2017
STATUS
approved