S000301


Irregular triangle of numbers n such that 9^n does not contain 0, 1, …, 9.

0, 1, 2, 3, 4, 6, 7, 12, 13, 14, 17, 34, 1, 3, 5, 7, 9, 0, 1, 2, 4, 5, 6, 10, 11, 17, 27, 0, 1, 2, 3, 4, 5, 7, 14, 17, 20, 25, 42, 0, 1, 2, 3, 4, 11, 17, 19, 23, 53, 0, 1, 2, 3, 7, 8, 9, 10, 22, 26, 29, 0, 1, 2, 3, 5, 6, 9, 16, 21, 52, 0, 1, 2, 4, 5, 6, 11, 12

1

S000301

The irregular triangle has 10 rows of different lengths.

T. D. Noe, Plot of 103 terms

T. D. Noe, Table of 103 terms

(Mma) k = 9; t = {}; Do[s = Position[Reverse[IntegerDigits[k^n]], i]; If[Length[s] == 0, AppendTo[t, n]], {i, 0, 9}, {n, 0, 1000}]; t

Cf. S000294-S000300.

nonn,base,tabf

T. D. Noe, Oct 14 2014

© Tony D Noe 2014-2015