A386618 Primes of the form 2^k + 13^k.
2, 173, 815730977
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..4
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]
Comments