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.

A215441 Numbers k such that 3^k + k^3 + 1 is prime.

Original entry on oeis.org

0, 1, 7, 39, 97, 115, 199, 1287, 1411, 2713, 4647, 84985
Offset: 1

Views

Author

Vincenzo Librandi, Sep 03 2012

Keywords

Comments

a(13) > 2*10^5. - Robert Price, Mar 06 2014

Crossrefs

Cf. A215436.

Programs

  • Magma
    [n: n in [0..800] | IsPrime(3^n+n^3+1)];
    
  • Mathematica
    Select[Range[0, 5000], PrimeQ[3^# + #^3 + 1] & ]
  • PARI
    is(n)=isprime(3^n+n^3+1) \\ Charles R Greathouse IV, Mar 06 2014

Extensions

a(12) from Robert Price, Mar 06 2014