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.

A057191 Numbers n such that (25^n+1)/26 is a prime.

Original entry on oeis.org

3, 7, 23, 29, 59, 1249, 1709, 1823, 1931, 3433, 8863, 43201, 78707
Offset: 1

Views

Author

N. J. A. Sloane, Sep 15 2000

Keywords

Comments

Some of the larger terms may only correspond to probable primes.
a(14) > 10^5. - Robert Price, Jun 10 2013

Programs

  • Mathematica
    Select[Range[0, 2000], PrimeQ[(25^# + 1) / 26] &] (* Vincenzo Librandi, Oct 29 2017 *)
  • PARI
    isok(n) = (denominator(p=(25^n+1)/26)==1) && isprime(p); \\ Michel Marcus, Oct 29 2017

Extensions

a(12)-a(13) from Robert Price, Jun 10 2013