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.

A172413 Positive numbers n such that 11^n + n + 1 is prime.

Original entry on oeis.org

1, 29, 35, 1309, 84379
Offset: 1

Views

Author

Matevz Markovic, Jun 30 2011

Keywords

Comments

11^n + n + 1 for n = 84379 is a probable prime.
There are no further terms up to 100000.

Crossrefs

Programs

  • Mathematica
    Do[ If[PrimeQ[11^m + m + 1 ] , Print[m]], {m, 5000}]
  • PARI
    is(n)=ispseudoprime(11^n+n+1) \\ Charles R Greathouse IV, Jun 13 2017