OFFSET
1,1
EXAMPLE
n=6654. n(1/4) = 9.031724865..., so 6654 is the first entry.
MATHEMATICA
okQ[n_]:=With[{ptrn=Table[1, {10}]}, Module[{rd10=RealDigits[Power[n, (4)^-1], 10, 10][[1]]}, DigitCount[FromDigits[rd10]]==ptrn]]; Select[Range[90000], okQ] (* Harvey P. Dale, Jan 21 2011 *)
PROG
(PARI) \\ The first 10 digits of i-th root of x contain all of the digits 0-9. rootdigits(n, i) = { local(f, x, y, a, d, s); for(x=2, n, f=[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; s=0; y=(x^(1/i))*10^9; a=Vec(Str(y)); for(d=1, 10, k=eval(a[d]); if(k==0, k=10); f[k]=1; ); for(j=1, 10, s+=f[j]); if(s==10, print1(x", ")); ) }
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Cino Hilliard, May 27 2006
STATUS
approved