A185121 Smallest prime factor of 10^(2^n) + 1.
11, 101, 73, 17, 353, 19841, 1265011073, 257, 10753, 1514497, 1856104284667693057, 106907803649, 458924033, 3635898263938497962802538435084289
Offset: 0
Examples
For n=2, a(2)=73 since 10^(2^2) + 1 = 10001 = 73 * 137.
Links
- FactorDB, Factorizations of 10^(2^n)+1
- Makoto Kamada, Factorizations of 100...001
- Wilfrid Keller, Prime factors of generalized Fermat numbers Fm(10) and complete factoring status
Crossrefs
Programs
-
Mathematica
Table[With[{k = 2^n}, FactorInteger[10^k + 1]][[1, 1]], {n, 0, 13, 1}] (* Vincenzo Librandi, Jul 23 2013 *)
-
PARI
a(n) = factor(10^(2^n)+1)[1, 1] \\ Michel Marcus, May 30 2013
Formula
a(n) = A038371(2^n). - M. F. Hasler, Jul 30 2019
Comments