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.

A288892 Primes of the form k!12+2, where k!12 is the 12-way factorial number.

Original entry on oeis.org

3, 5, 7, 11, 13, 47, 191, 1217, 2467, 47387, 98348405029877, 4236855368093671921723127, 67181587479226956985234896806020127, 892032079930114592828175067173074768240627, 1350562067805887256448098266867371770081404755312330218315703127
Offset: 1

Views

Author

Robert Price, Jun 18 2017

Keywords

Crossrefs

Cf. A283594.

Programs

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