This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A234966 #23 Jun 19 2020 21:28:07 %S A234966 0,106,104,104,105,102,102,408,104,107,203,109,103,103,1056,3703,4604, %T A234966 207,606,11018,3069,20064 %N A234966 Least number k with at least one zero such that k^n contains no zero, or 0 if no such number exists. %C A234966 a(n) > 5*10^8 or 0 for n = 23 and for 25 < n < 75. %C A234966 It is known that a(24) = 12801714 and a(25) = 402. %C A234966 a(n) > 5*10^9 or 0 for n = 23 and for 25 < n <= 200. - _Chai Wah Wu_, Apr 25 2019 %e A234966 a(5) = 105 because 105 is the smallest number with a 0 where 105^5 does not have a 0 (105^5 = 12762815625). %o A234966 (Python) %o A234966 def f(x): %o A234966 for n in range(10**7): %o A234966 if "0" in str(n): %o A234966 if "0" not in str(n**x): %o A234966 return n %o A234966 for x in range(1, 75): %o A234966 if f(x) is None: %o A234966 print(0) %o A234966 else: %o A234966 print(f(x)) %Y A234966 Cf. A104315. %K A234966 nonn,base,more,hard %O A234966 1,2 %A A234966 _Derek Orr_, Jan 02 2014