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.

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

Original entry on oeis.org

37, 59, 967, 8537, 623677, 2229272062357, 38661097149707, 85869076433056713726000946907, 9531467484069295223586105103157, 79432354647061073112183103536868912864021331942535479440624079759179748913587442580929345703157
Offset: 1

Views

Author

Robert Price, Jun 11 2017

Keywords

Crossrefs

Programs

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