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.

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

Original entry on oeis.org

3, 31, 67, 911, 21481, 43201, 623621, 1339951, 49579051, 2131900201, 2229272062301, 8549258359016351, 606997343490162601, 46738795448742522101, 135419196954588922351, 131181879631714694053764558690601, 4766501963120985802465188343530601
Offset: 1

Views

Author

Robert Price, Jul 10 2017

Keywords

Crossrefs

Cf. A289697.

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
    Select[Table[MultiFactorial[i, 6] - 24, {i, 9, 100}], PrimeQ[#]&]
Showing 1-1 of 1 results.