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.

A288412 Primes of the form k!2+512, where k!2 is the double factorial number (A006852).

Original entry on oeis.org

617, 135647, 2027537, 654729587, 7905853581137, 370285001030422820361936176659518850400275455268246313217966819668512968338481634393678502844088430422210693359887
Offset: 1

Views

Author

Robert Price, Jun 08 2017

Keywords

Crossrefs

Cf. A076196.

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
    Select[Table[MultiFactorial[i, 2] + 512, {i, 0, 100}], PrimeQ[#]&]