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.

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

Original entry on oeis.org

1039, 1129, 13749311599, 6332659870762851649, 1408316897580354679543222894676508168024833284165925995774150107832775465649821970462037757921294414350725483019407292942600250244141649
Offset: 1

Views

Author

Robert Price, Jun 08 2017

Keywords

Crossrefs

Cf. A076197.

Programs

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