A228034 Primes of the form 9^n + 2.
3, 11, 83, 6563, 59051, 4782971, 282429536483, 2541865828331, 150094635296999123, 57264168970223481226273458862846808078011946891, 30432527221704537086371993251530170531786747066637051
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..16
- Darij Grinberg, Introduction to Modern Algebra (UMN Spring 2019 Math 4281 Notes), University of Minnesota (2019).
Crossrefs
Programs
-
Magma
[a: n in [0..300] | IsPrime(a) where a is 9^n+2];
-
Mathematica
Select[Table[9^n + 2, {n, 0, 300}], PrimeQ]