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.

A386618 Primes of the form 2^k + 13^k.

Original entry on oeis.org

2, 173, 815730977
Offset: 1

Views

Author

Vincenzo Librandi, Aug 17 2025

Keywords

Comments

If 13^k + 2^k is prime then k is either 0 or a power of 2. The corresponding values of k for a(1)-a(4) are 0, 2, 8 and 512. The fourth value is too long to enter.

Crossrefs

Programs

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