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.

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

Original entry on oeis.org

3, 4, 6, 7, 8, 12, 13, 14, 27, 28, 33, 35, 44, 50, 62, 64, 74, 88, 114, 140, 142, 242, 248, 262, 270, 284, 395, 473, 582, 600, 634, 707, 805, 882, 907, 1008, 1152, 1243, 1853, 2340, 2410, 2703, 2793, 3033, 3600, 3925, 4124, 4154, 6185, 6367, 7130, 9104, 9992
Offset: 1

Views

Author

Hugo Pfoertner, Jun 23 2003

Keywords

Comments

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. A085157 (quintuple factorials), A085148.

Programs

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

Extensions

More terms from Herman Jamke (hermanjamke(AT)fastmail.fm), Jan 03 2008
a(54)-a(63) from Ken Davis link added to b-file by Robert Price, Sep 23 2012