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.

A289859 Primes of the form k!2-2, where k!2 is the sextuple factorial number (A085158).

Original entry on oeis.org

13, 103, 2027023, 34459423, 654729073, 2980227913743310874726229193921873, 174865344543353986303948473285124243127671456831640623, 352999527454840466971061863960307904899505075341088595453568994140623
Offset: 1

Views

Author

Robert Price, Jul 13 2017

Keywords

Crossrefs

Programs

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