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.

A255388 Primes of the form 157^k - 156^k.

Original entry on oeis.org

313, 73477, 102850464108757, 2202194587566133922938215539676032221
Offset: 1

Views

Author

Michael P. May, Feb 21 2015

Keywords

Comments

a(5) has 1452 digits. - Vincenzo Librandi, Feb 22 2015
The values of k are 2, 3, 7, 17, 661, ... - Jinyuan Wang, May 30 2020

Crossrefs

Cf. A254298.

Programs

  • Magma
    [a: n in [0..600] | IsPrime(a) where a is 157^n-156^n]; // Vincenzo Librandi, Feb 22 2015
  • Mathematica
    Select[Table[157^n - 156^n, {n, 1000}], PrimeQ] (* Vincenzo Librandi, Feb 22 2015 *)