OFFSET
1,1
COMMENTS
Call terms trivial if they are of the form 10^k*a(m) (e.g., 400,40000,900,90000). Conjecture: sequence has infinitely many nontrivial terms.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
MATHEMATICA
ppQ[n_]:=GCD@@FactorInteger[n][[All, 2]]>1; Select[FromDigits/@ Tuples[{0, 4, 6, 8, 9}, 6], ppQ] (* Harvey P. Dale, Aug 12 2020 *)
PROG
(PARI) list(lim)=my(v=List(), u=[0, 4, 6, 8, 9]); forprime(e=2, log(lim+=.5)\log(2), for(b=2, lim^(1/e), if(vecsort(concat(digits(b^e), u), , 8)==u, listput(v, b^e)))); vecsort(Vec(v), , 8) \\ Charles R Greathouse IV, Mar 20 2013
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 08 2003
EXTENSIONS
More terms from Matthew Ohlsen (mjo178(AT)psu.edu), Feb 26 2006
Missing terms added by Charles R Greathouse IV, Mar 20 2013
STATUS
approved