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

A329175
Numbers k such that k![4] - 64 is prime, where k![4] = A007662(k) = quadruple factorial.
0
11, 13, 41, 45, 59, 85, 141, 283, 357, 419, 713, 1149, 1353, 1537, 1669, 2353, 2389, 2543, 5147, 5279, 12801, 30035, 39421, 46969, 61077
OFFSET
1,1
COMMENTS
a(26) > 10^5.
The first 3 primes associated with this sequence are: 167, 521, 7579867420061.
LINKS
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[1000], (x = MultiFactorial[#, 4] - 64; x > 0 && PrimeQ[x]) &]
CROSSREFS
Sequence in context: A230665 A132238 A132241 * A045467 A108264 A023268
KEYWORD
nonn
AUTHOR
Robert Price, Nov 07 2019
STATUS
approved