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.

A216375 Numbers k such that 11^k + k^11 + 1 is prime.

Original entry on oeis.org

0, 1, 5, 941, 23071
Offset: 1

Views

Author

Vincenzo Librandi, Sep 06 2012

Keywords

Comments

a(6) > 10^5. - Robert Price, Jan 16 2013

Crossrefs

Programs

  • Mathematica
    Select[Range[0, 5000], PrimeQ[11^# + #^11 + 1] &]
  • PARI
    is(n)=isprime(11^n+n^11+1) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

a(5) from Robert Price, Jan 16 2014