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.

Showing 1-1 of 1 results.

A289550 Primes of the form k!6-4, where k!6 is the sextuple factorial number (A085158).

Original entry on oeis.org

2, 3, 23, 401, 8501, 229631, 623641
Offset: 1

Views

Author

Robert Price, Jul 07 2017

Keywords

Comments

The next term is too large to display.
The next term (a(8)) has 113 digits. - Harvey P. Dale, Dec 09 2020

Crossrefs

Cf. A289547.

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
    Select[Table[MultiFactorial[i, 6] - 4, {i, 4, 100}], PrimeQ[#]&]
    Select[Table[Times@@Range[n,1,-6]-4,{n,3,100}],PrimeQ] (* Harvey P. Dale, Dec 09 2020 *)
Showing 1-1 of 1 results.