A385971 Smallest m such that 5^m begins with n 9's after the first digit.
0, 8, 195, 799, 28737, 167821, 325146, 6432162, 543157237, 1807789217, 3731189547, 3731189547
Offset: 0
Examples
5^a(0) = 5^0 = 1 5^a(1) = 5^8 = 390625 5^a(2) = 5^195 = 1991364888915565346... 5^a(3) = 5^799 = 2999393627791261909... 5^a(4) = 5^28737 = 1999929120817815105... 5^a(5) = 5^167821 = 6999994116858573262...
Links
- Marco Ripà, Is the leading digit of the decimal expansion of the prime zeta function at n equal to the first digit of 5^n, for all integers n≥10?, Stack Exchange (2025)
Formula
a(n) = Min_{d=1..9} S(d*10^(n+1)-1) where 5^S(k) is the smallest power of 5 beginning with k.
Comments