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.

A289818 Primes of the form k!3-27, where k!3 is the triple factorial number (A007661).

Original entry on oeis.org

53, 853, 3613, 24344293, 72642169573, 2576442067869429759973, 38900816605808456499199973, 26070192823309041523916799973, 17978533302590087193373917833428087202627190783999999973
Offset: 1

Views

Author

Robert Price, Jul 12 2017

Keywords

Crossrefs

Cf. A247463.

Programs

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