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.

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

Original entry on oeis.org

19, 71, 271, 3631, 58231, 209431, 4188791, 96342391, 17041023991, 72642169591, 2324549427191, 1143053268797439991, 52580450364682239991, 262134882788466687991, 694657439389436723199991, 38900816605808456499199991, 2295148179742698933452799991
Offset: 1

Views

Author

Robert Price, Jul 12 2017

Keywords

Crossrefs

Cf. A243078.

Programs

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