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.

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

Original entry on oeis.org

13, 197, 613, 13404133, 24663654373, 37455569511954513919973, 448140631309739369262009548799973, 38794993239276710062728555790335999973
Offset: 1

Views

Author

Robert Price, Jul 10 2017

Keywords

Crossrefs

Cf. A289698.

Programs

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