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.

A219284 Primes of the form 17^n - 16^n.

Original entry on oeis.org

371281, 141903217
Offset: 1

Views

Author

Vincenzo Librandi, Nov 24 2012

Keywords

Comments

a(3) has 98 digits and a(6) has 3491 digits.

Crossrefs

Cf. A062583.

Programs

  • Magma
    [a: n in [0..30] | IsPrime(a) where a is 17^n - 16^n];
  • Mathematica
    Select[Table[17^n - 16^n, {n, 0, 300}], PrimeQ]