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.

A215435 Primes of form 3^k + k^3 - 1.

Original entry on oeis.org

3, 53, 367, 20411, 10301051460877537453973547542467, 7509466514979724803946715958615457
Offset: 1

Views

Author

Vincenzo Librandi, Sep 03 2012

Keywords

Programs

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