OFFSET
1,1
COMMENTS
Motivated by A030700: decimal expansion of 3^n contains no zeros (probably finite).
It appears that this sequence is finite. Is a(15) = 3^73 the last term?
There are no more terms through at least 3^(10^7) (which is a 4771213-digit number). It seems nearly certain that no power of 3 containing this many or more decimal digits could have fewer than two '0' digits. (Among numbers of the form 3^k with 73 < k <= 10^7, the only one having fewer than two '0' digits among its final 200 digits is 3^5028978.) - Jon E. Schoenfield, Jun 24 2018
FORMULA
a(n) = 3^A305933(1,n).
MATHEMATICA
Select[3^Range[120], DigitCount[#, 10, 0] == 1 &] (* Michael De Vlieger, Jul 01 2018 *)
PROG
(PARI) for(n=1, 99, #select(t->!t, digits(3^n))==1&& print1(3^n", "))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
M. F. Hasler (following a suggestion by Zak Seidov), Jun 14 2018
STATUS
approved