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.

A254298 Primes of the form 120^k - 119^k.

Original entry on oeis.org

239, 42841, 20386538221561, 110287289683553081554913641
Offset: 1

Views

Author

Michael P. May, Jan 27 2015

Keywords

Comments

a(5) has 164 digits, a(6) has 726 digits, a(7) has 826 digits. - Vincenzo Librandi, Feb 22 2015
The values of k are 2, 3, 7, 13, 79, 349, 397, 1279, ... - Jinyuan Wang, May 30 2020

Crossrefs

Cf. A215538.

Programs

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