S000296


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

0, 1, 2, 3, 4, 7, 8, 9, 12, 14, 16, 17, 18, 36, 38, 43, 1, 3, 4, 6, 8, 14, 16, 19, 26, 28, 33, 0, 1, 2, 3, 6, 7, 8, 10, 11, 13, 17, 18, 21, 23, 27, 32, 37, 84, 0, 1, 2, 3, 4, 5, 6, 9, 10, 12, 13, 16, 17, 19, 20, 22, 24, 25, 30, 40, 46, 51, 0, 2, 4, 8, 12, 20, 0

1

S000296

The irregular triangle has 10 rows of different lengths.

T. D. Noe, Plot of 147 terms

T. D. Noe, Table of 147 terms

(Mma) k = 4; 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