A341115 Numbers k such that k*2^101 + 1 is a prime factor of 10^(10^100) + 1.
125000, 61298400, 578869250, 4511718750, 195312500000, 2918554687500, 3874552343750
Offset: 1
Examples
The smallest prime factor of 10^10^100 + 1 is 125000*2^100 + 1 = 316912650057057350374175801344000001.
Links
- D. A. Alpern, Factors of 1000 numbers starting from googolplex
Programs
-
Python
A341115_list, k, m, l, n = [], 1, 2**101, 2**101+1, 10**100 while k < 10**6: if pow(10,n,l) == l-1: A341115_list.append(k) print(len(A341115_list),k) k += 1 l += m # Chai Wah Wu, Mar 28 2021
Comments