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.

A219283 Primes of the form 13^k - 12^k.

Original entry on oeis.org

6431804812640900941, 31211427601852046808999765129652549, 4519079836942618423019040742735616921552429101, 22137406298265966315641393147750228275603823278911109
Offset: 1

Views

Author

Vincenzo Librandi, Nov 23 2012

Keywords

Crossrefs

Cf. A062579 (associated k).

Programs

  • Magma
    [a: n in [0..200] | IsPrime(a) where a is  13^n - 12^n];
  • Mathematica
    Select[Table[13^n - 12^n, {n, 0, 200}], PrimeQ]