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.

A057181 Numbers n such that (15^n + 1)/16 is a prime.

Original entry on oeis.org

3, 7, 29, 1091, 2423, 54449, 67489, 551927, 1841911, 1848811
Offset: 1

Views

Author

N. J. A. Sloane, Sep 15 2000

Keywords

Comments

a(6), a(7) and a(8) correspond to probable primes.

Programs

  • Mathematica
    Select[Range[3000], PrimeQ[(15^# + 1) / 16] &] (* Vincenzo Librandi, Oct 29 2017 *)
  • PARI
    isok(n) = (denominator(p=(15^n+1)/16)==1) && isprime(p); \\ Michel Marcus, Oct 29 2017
  • Prime95
    PRP=1,15,551927,1,0,0,"16"
    

Extensions

a(6) from Paul Bourdelais, Mar 15 2010
a(7) from Paul Bourdelais, Mar 16 2010
a(8) from Paul Bourdelais, Jul 03 2013
a(9)-a(10) from Paul Bourdelais, Jul 08 2024