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.

A289757 Primes of the form k!7-1, where k!7 is the septuple factorial number (A114799).

Original entry on oeis.org

2, 3, 5, 7, 17, 29, 43, 59, 97, 509, 1559, 12239, 198719, 379439, 633599, 1136678399, 33739804799, 99298742399, 1990648483199, 59126328543388935628799, 3797826416991538753535999, 2409161546475779555007420356689919999, 9325555101161759039183007326207999999
Offset: 1

Views

Author

Robert Price, Jul 11 2017

Keywords

Crossrefs

Cf. A156167.

Programs

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