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.

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

Original entry on oeis.org

5, 7, 19, 43, 227, 643, 4483, 14083, 116483, 13404163, 333247405883392003, 75494329921353417731638961852391076220895232000003, 607641057683281452422878601758017247375890833361248739064460794062744301780319012095222746705407815771488256000000000000003
Offset: 1

Views

Author

Robert Price, Jun 11 2017

Keywords

Crossrefs

Cf. A287844.

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
    Select[Table[MultiFactorial[i, 6] + 3, {i, 0, 100}], PrimeQ[#]&]
Showing 1-1 of 1 results.