Irregular triangle of numbers n such that 3^n does not contain 0, 1, …, 9.
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 19, 23, 24, 26, 27, 28, 31, 34, 68, 1, 2, 3, 5, 6, 10, 14, 18, 25, 27, 29, 33, 37, 43, 0, 1, 2, 4, 8, 9, 10, 11, 12, 15, 20, 22, 29, 34, 35, 54, 59, 0, 2, 3, 4, 6, 7, 8, 10, 11, 14, 19, 27, 28, 34, 40, 50, 55, 84, 0
1
The irregular triangle has 10 rows of different lengths.
T. D. Noe, Plot of 196 terms
T. D. Noe, Table of 196 terms
(Mma) k = 3; 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