S000300


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

0, 1, 2, 3, 5, 6, 8, 9, 11, 12, 13, 17, 24, 27, 1, 2, 4, 5, 11, 21, 22, 0, 1, 2, 4, 12, 13, 14, 18, 56, 0, 1, 2, 3, 4, 6, 7, 8, 16, 19, 20, 34, 51, 0, 1, 3, 5, 7, 8, 23, 25, 0, 1, 2, 4, 5, 6, 8, 9, 10, 12, 22, 0, 1, 3, 7, 9, 10, 11, 13, 15, 18, 19, 30, 31, 0, 1, 2

1

S000300

The irregular triangle has 10 rows of different lengths.

T. D. Noe, Plot of 105 terms

T. D. Noe, Table of 105 terms

(Mma) k = 8; 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-S000301.

nonn,base,tabf

T. D. Noe, Oct 14 2014

© Tony D Noe 2014-2015