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.

A289549 Primes of the form k!6-3, where k!6 is the sextuple factorial number (A085158).

Original entry on oeis.org

2, 3, 13, 37, 73569236156415997, 2076797833465298943997, 3445912395099815280639997, 337699414719781897502719997, 2406637297721880276844203212799997, 56505983376657530671203898929399315771217221372411818526783048069123288081453694320639999999999997
Offset: 1

Views

Author

Robert Price, Jul 07 2017

Keywords

Crossrefs

Cf. A279646.

Programs

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