A240945 Powers of 9 without the digit '0' in their decimal expansion.
1, 9, 81, 729, 6561, 531441, 4782969, 282429536481, 2541865828329, 22876792454961, 16677181699666569, 278128389443693511257285776231761
Offset: 1
Programs
-
Magma
[9^n: n in [0..3*10^4] | not 0 in Intseq(9^n)];
-
Mathematica
Select[9^Range[0, 2*10^5], DigitCount[#, 10, 0]==0 &]
Comments