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.

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

Original entry on oeis.org

257, 271, 1201, 10651, 135391, 316234143481, 49988475139107080748861383849035044804037186461213252284425520655249250725695020643146597883951938106998443603515881
Offset: 1

Views

Author

Robert Price, Jun 08 2017

Keywords

Comments

The next term has 174 digits. - Harvey P. Dale, Mar 09 2018

Crossrefs

Cf. A076195.

Programs

  • Mathematica
    MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
    Select[Table[MultiFactorial[i, 2] + 256, {i, 0, 100}], PrimeQ[#]&]
    Select[Range[200]!!+256,PrimeQ] (* Harvey P. Dale, Mar 09 2018 *)