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.

A215434 Primes of form 2^k + k^2 - 1.

Original entry on oeis.org

2, 7, 31, 1123, 1180591620717411308323, 21778071482940061661655974875633165551139, 89202980794122492566142873090593446023942979, 1569275433846670190958947355801916604025588861116008664323
Offset: 1

Views

Author

Vincenzo Librandi, Sep 03 2012

Keywords

Crossrefs

Programs

  • Magma
    [a: n in [0..250] | IsPrime(a) where a is 2^n+n^2-1];
  • Mathematica
    Select[Table[2^n + n^2 - 1, {n, 0, 300}], PrimeQ]