OFFSET
1,3
COMMENTS
See A007377 for the analog for 2^n (final term seems to be 86), A008839 for 5^n (final term seems to be 58), and others listed in cross-references. - M. F. Hasler, Mar 07 2014
See A238939(n) = 3^a(n) for the actual powers. - M. F. Hasler, Mar 08 2014
LINKS
M. F. Hasler, Zeroless powers, OEIS Wiki, Mar 07 2014
W. Schneider, NoZeros: Powers n^k without Digit Zero [Cached copy]
Eric Weisstein's World of Mathematics, Zero
EXAMPLE
Here is 3^68, conjecturally the largest power of 3 that does not contain a zero:
278128389443693511257285776231761. - N. J. A. Sloane, Feb 10 2023
MATHEMATICA
Do[If[Union[RealDigits[3^n][[1]]][[1]]!=0, Print[n]], {n, 0, 10000}] (* Vincenzo Librandi, Oct 19 2012 *)
Select[Range[0, 70], DigitCount[3^#, 10, 0]==0&] (* Harvey P. Dale, Feb 06 2019 *)
PROG
(Magma) [n: n in [0..500] | not 0 in Intseq(3^n) ]; // Vincenzo Librandi, Oct 19 2012
(PARI) is_A030700(n)=vecmin(digits(3^n)) \\ M. F. Hasler, Mar 07 2014
CROSSREFS
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
Initial term 0 added by Vincenzo Librandi, Oct 19 2012
STATUS
approved