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.

A255390 Primes of the form 173^k - 172^k.

Original entry on oeis.org

89269, 184438202074309, 379889466040169687349246148321558634248221737128245658182879616485078366262882828905566134219669
Offset: 1

Views

Author

Michael P. May, Feb 21 2015

Keywords

Comments

a(4) has 1569 digits, a(5) has 2030 digits. - Vincenzo Librandi, Feb 22 2015
The values of k are 3, 7, 43, 701, 907, ... - Jinyuan Wang, May 30 2020

Crossrefs

Cf. A254298.

Programs

  • Magma
    [a: n in [0..200] | IsPrime(a) where a is (173^n-172^n)]; // Vincenzo Librandi, Feb 22 2015
    
  • Mathematica
    Select[Table[173^n - 172^n, {n, 1000}], PrimeQ] (* Vincenzo Librandi, Feb 22 2015 *)
  • PARI
    select(m->ispseudoprime(m), vector(100, k, 173^k-172^k)) \\ Jinyuan Wang, May 30 2020