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.

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

Original entry on oeis.org

7, 11, 13, 61, 97, 941, 49579081, 2131900231, 5745471106381, 354465826066854004794020104381, 37267424634284447239051884908224251090631, 227836844933692950264766019866879913915703131, 128107331191722301650949440150294486487789796881
Offset: 1

Views

Author

Robert Price, Jun 11 2017

Keywords

Crossrefs

Cf. A287956.

Programs

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