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.

A288890 Primes of the form k!4+2, where k!4 is the quadruple factorial number (A007662).

Original entry on oeis.org

3, 5, 7, 23, 47, 233, 587, 3467, 65837, 40883537, 151412627, 1267389587, 74389431691577, 885821206052908127, 13005556505149168230729834377, 583723376551025432768079734666930727861956890308512536691015627
Offset: 1

Views

Author

Robert Price, Jun 18 2017

Keywords

Crossrefs

Programs

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