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.

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

Original entry on oeis.org

3, 5, 7, 29, 937, 229637, 13299311027, 678264862277, 2229272062327, 8260613413473469333910627, 204676724960380351177777255683652821505300292407056383439453127, 359539042675600162641430486036393282148945045174959856388131309765627
Offset: 1

Views

Author

Robert Price, Jun 18 2017

Keywords

Crossrefs

Cf. A287207.

Programs

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