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.

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

Original entry on oeis.org

29, 31, 79, 1753, 21529, 623669, 2229272062349, 23481740411754649, 606997343490162649, 135419196954588922399, 1140711996797519078728387466899, 15873007435437477980505511601565649
Offset: 1

Views

Author

Robert Price, Jun 11 2017

Keywords

Crossrefs

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
    Select[Table[MultiFactorial[i, 6] + 24, {i, 0, 100}], PrimeQ[#]&]
    Select[Table[24+Times@@Range[n,1,-6],{n,0,200}],PrimeQ] (* Harvey P. Dale, Jan 14 2022 *)
Showing 1-1 of 1 results.