cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A051592 Numbers k such that k!!!!!! - 1 is prime.

Original entry on oeis.org

3, 4, 6, 12, 14, 54, 74, 102, 114, 302, 318, 366, 614, 1178, 1188, 3110, 7284, 21432, 21906, 25848, 29882, 38618, 41990, 84510, 86022
Offset: 1

Views

Author

Keywords

Comments

k!!!!!! = k*(k-6)*(k-12)*(k-18)*...
The search for multifactorial primes started by Ray Ballinger is now continued by a team of volunteers on the website of Ken Davis (see link).

Crossrefs

Cf. A085158 (sextuple factorials), A085150.

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
    Select[Range[0, 1000], PrimeQ[MultiFactorial[#, 6] - 1] & ] (* Robert Price, Apr 19 2019 *)

Extensions

Edited and extended by Hugo Pfoertner, Jun 23 2003
Corrected and extended by Herman Jamke (hermanjamke(AT)fastmail.fm), Jan 03 2008