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.

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

Original entry on oeis.org

11, 13, 8513, 623653, 894930583, 8549258359016383, 235688987204434958925489124744024850191208400552711361516202496964312102763671883, 3455904336175896542411549854057588080710499447187965811860796717973635798288665212915137252930364990234383
Offset: 1

Views

Author

Robert Price, Jun 11 2017

Keywords

Crossrefs

Cf. A288152.

Programs

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