Irregular triangle of numbers n such that 5^n does not contain 0, 1, …, 9.
0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 17, 18, 30, 33, 58, 1, 2, 4, 8, 10, 24, 32, 42, 0, 1, 0, 1, 2, 3, 4, 6, 7, 10, 11, 12, 16, 23, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 23, 25, 38, 43, 48, 55, 0, 0, 1, 2, 3, 5, 7, 9, 11, 13, 15, 23, 45, 0, 1, 2, 3, 4
1
The irregular triangle has 10 rows of different lengths.
T. D. Noe, Plot of 123 terms
T. D. Noe, Table of 123 terms
(Mma) k = 5; t = {}; Do[s = Position[Reverse[IntegerDigits[k^n]], i]; If[Length[s] == 0, AppendTo[t, n]], {i, 0, 9}, {n, 0, 1000}]; t
nonn,base,tabf
T. D. Noe, Oct 14 2014