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.

A126856 Numbers n such that (31^n + 1)/32 is prime.

Original entry on oeis.org

109, 461, 1061, 50777
Offset: 1

Views

Author

Alexander Adamchuk, Mar 23 2007

Keywords

Comments

All terms are primes.
a(5) > 10^5. - Robert Price, Jul 12 2013

Crossrefs

Programs

  • Mathematica
    Do[ p=Prime[n]; If[ PrimeQ[ (31^p + 1)/32 ], Print[p] ], {n,1,1100} ]
  • PARI
    is(n)=isprime((31^n+1)/32) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

a(4) from Robert Price, Jul 12 2013