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.

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

Original entry on oeis.org

53, 103, 139, 983, 1777, 21827623, 2131900273, 104463111073, 23481740411754673, 606997343490162673, 1714167050058087673, 11510631741140058401923, 10465247677041459437875114423
Offset: 1

Views

Author

Robert Price, Jun 11 2017

Keywords

Crossrefs

Cf. A288450.

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
    Select[Table[MultiFactorial[i, 6] + 48, {i, 0, 100}], PrimeQ[#]&]
    Select[(Table[Times@@Range[n,1,-6],{n,200}]+48),PrimeQ] (* Harvey P. Dale, Oct 02 2020 *)
Showing 1-1 of 1 results.