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.

A071382 Numbers n such that (30^n+1)/31 is a prime.

Original entry on oeis.org

139, 173, 547, 829, 2087, 2719, 3109, 10159, 56543, 80599
Offset: 1

Views

Author

Rick L. Shepherd, May 22 2002

Keywords

Comments

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

Crossrefs

Cf. A071381.

Programs

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

Extensions

a(8) from Herman Jamke (hermanjamke(AT)fastmail.fm), Jan 05 2008
a(9)-a(10) from Robert Price, Jul 10 2013