A078814 Smallest prime factor of googolplex - n that exceeds 13, or 1 if googolplex - n is 13-smooth.
17, 1433, 499679, 1279, 31, 149
Offset: 1
Links
- Dario Alejandro Alpern, Factors of 1000 numbers up to googolplex.
Programs
-
Mathematica
(* For any individual n *) k = 17; While[ !PrimeQ[k] || PowerMod[10, 10^100, k] - n != 0, k += 2]; k
-
PARI
a(n) = forprime(p=17, oo, if(Mod(10, p)^lift(Mod(10, p-1)^100) == n, return(p))); \\ Jinyuan Wang, Apr 17 2020
Extensions
Name edited by Peter Munn, Feb 20 2025
Comments