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.

A289492 Primes of the form k!4+16, where k!4 is the quadruple factorial number (A007662).

Original entry on oeis.org

17, 19, 37, 61, 601, 65851, 40883551, 44358635491, 184874815141, 200200021673987500790641, 2442358029135994033939891, 13005556505149168230729834391, 85277434004263096088895523996891, 47579595706543208754134106245953141
Offset: 1

Views

Author

Robert Price, Sep 02 2017

Keywords

Crossrefs

Cf. A291344.

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
    Select[Table[MultiFactorial[i, 4] + 16, {i, 0, 100}], PrimeQ[#]&]