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.

A215436 Primes of form 3^k + k^3 + 1.

Original entry on oeis.org

2, 5, 2531, 4052555153019035587, 19088056323407827075424486287615602692671561637, 7395104114874202511988394360121831439224179537194323783
Offset: 1

Views

Author

Vincenzo Librandi, Sep 03 2012

Keywords

Crossrefs

Cf. A215441.

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, 200}], PrimeQ]