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.

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

Original entry on oeis.org

37, 41, 43, 127, 971, 43261, 623681, 1340011, 5745471106411, 46738795448742522161, 4766501963120985802465188343530661, 1074786248550703824689992004611909893100965328075457367488707779289800733267774881216607685661343511962890661
Offset: 1

Views

Author

Robert Price, Jun 11 2017

Keywords

Crossrefs

Cf. A288449.

Programs

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