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.

A309532 Numbers k such that (121^k + 1)/122 is prime.

Original entry on oeis.org

5, 13, 97, 1499, 11321, 320483
Offset: 1

Views

Author

Paul Bourdelais, Aug 06 2019

Keywords

Comments

The corresponding primes are terms of A059055. - Bernard Schott, Aug 09 2019

Crossrefs

Cf. A059055.

Programs

  • Mathematica
    Do[p=Prime[n]; If[PrimeQ[(121^p + 1)/122], Print[p]], {n, 1, 1000000}]
  • PARI
    is(n)=ispseudoprime((121^n+1)/122)