A219283 Primes of the form 13^k - 12^k.
6431804812640900941, 31211427601852046808999765129652549, 4519079836942618423019040742735616921552429101, 22137406298265966315641393147750228275603823278911109
Offset: 1
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..7
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]