A131618 Numbers k such that the decimal expansion of 3^k contains no 4.
0, 1, 2, 3, 4, 6, 7, 8, 9, 22, 33, 34, 38, 46, 49, 75, 106
Offset: 1
Programs
-
Magma
[n: n in [0..1000] | not 4 in Intseq(3^n)]; // Vincenzo Librandi, May 06 2015
-
Mathematica
Join[{0}, Select[ Range@10000, FreeQ[ IntegerDigits[3^# ], 4] &]]
Extensions
Initial 0 added and Mathematica code adapted by Vincenzo Librandi, May 06 2015
Comments