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.

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

Original entry on oeis.org

557, 743, 1097, 10457, 66347, 209357, 151413137, 1267390097, 4996617137, 44358635987, 2442358029135994033940387, 654019644904558303836431802744185605453637, 7767791322531438974665300521192692435966766137
Offset: 1

Views

Author

Robert Price, Sep 02 2017

Keywords

Comments

The next term has 190 digits. - Harvey P. Dale, Aug 02 2022

Crossrefs

Cf. A291350.

Programs

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