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.

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

Original entry on oeis.org

23, 59, 373, 1697, 7577923, 21827543, 295540213, 131527051677143, 2435649120429493, 12604484198222791843, 85869076433056713726000946843, 1529106341836865438018563891724026267890593, 20902899038646966778921470349830080361289716808681312890593
Offset: 1

Views

Author

Robert Price, Jul 10 2017

Keywords

Crossrefs

Cf. A289699.

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
    Select[Table[MultiFactorial[i, 6] - 32, {i, 10, 100}], PrimeQ[#]&]