Position of first zero digit in 6^n, counting from the right.
0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 3, 0, 3, 3, 10, 5, 0, 14, 4, 6, 7, 11, 5, 0, 5, 5, 12, 19, 0, 13, 10, 10, 8, 5, 9, 3, 9, 3, 3, 15, 9, 26, 4, 0, 24, 15, 18, 18, 6, 13, 4, 8, 24, 9, 12, 4, 5, 6, 7, 4, 3, 5, 3, 3, 7, 24, 17, 18, 19, 9, 8, 19, 17, 4, 8, 16, 28, 9
0
Zero indicates that there are no zeros in the number. Is there a maximum value for this function? This question was discussed in MathOverflow.
T. D. Noe, Plot of 10001 terms
T. D. Noe, Table of 10001 terms
MathOverflow, Zeros in the representation of powers of 3
(Mma) Table[s = Position[Reverse[IntegerDigits[6^n]], 0]; If[Length[s] == 0, 0, s[[1, 1]]], {n, 0, 100}]
nonn,base
T. D. Noe, Oct 12 2010