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 A305946 #6 Jun 23 2018 09:19:13 %S A305946 14,10,17,16,11,14,10,8,12,19,9,16,13,11,10,10,11,10,10,17,7,15,14,16, %T A305946 13,22,12,17,15,17,7,6,14,22,13,19,14,12,15,7,11,14,6,12,9,12,9,14,13, %U A305946 15,21 %N A305946 Number of powers of 6 having exactly n digits '0' (in base 10), conjectured. %C A305946 a(0) = 14 is the number of terms in A030702 and in A195948, which includes the power 6^0 = 1. %C A305946 These are the row lengths of A305926. It remains an open problem to provide a proof that these rows are complete (as for all terms of A020665), but the search has been pushed to many orders of magnitude beyond the largest known term, and the probability of finding an additional term is vanishing, cf. Khovanova link. %H A305946 M. F. Hasler, <a href="/wiki/Zeroless_Powers">Zeroless powers</a>, OEIS Wiki, March 2014, updated 2018. %H A305946 T. Khovanova, <a href="https://blog.tanyakhovanova.com/2011/02/86-conjecture/">The 86-conjecture</a>, Tanya Khovanova's Math Blog, Feb. 2011. %H A305946 W. Schneider, <a href="http://web.archive.org/web/20050407120908/http://www.wschnei.de:80/digit-related-numbers/nozeros.html">No Zeros</a>, 2000, updated 2003. (On web.archive.org--see A007496 for a cached copy.) %o A305946 (PARI) A305946(n,M=99*n+199)=sum(k=0,M,#select(d->!d,digits(6^k))==n) %o A305946 (PARI) A305946_vec(nMax,M=99*nMax+199,a=vector(nMax+=2))={for(k=0,M,a[min(1+#select(d->!d,digits(6^k)),nMax)]++);a[^-1]} %Y A305946 Cf. A030702 = row 0 of A305926: k such that 6^k has no 0's; A238936: these powers 6^k. %Y A305946 Cf. A020665: largest k such that n^k has no '0's. %Y A305946 Cf. A063596 = column 1 of A305926: least k such that 6^k has n digits '0' in base 10. %Y A305946 Cf. A305942 (analog for 2^k), ..., A305947, A305938, A305939 (analog for 9^k). %K A305946 nonn,base %O A305946 0,1 %A A305946 _M. F. Hasler_, Jun 22 2018