OFFSET
1,1
COMMENTS
i = 2 produces A113507 in the PARI script.
EXAMPLE
n=9950. n^(1/3) = 21.50837964..., so 9950 is the third entry.
MATHEMATICA
Select[Range[100000], Sort[RealDigits[Surd[#, 3], 10, 10][[1]]]==Range[0, 9]&] (* Harvey P. Dale, Jan 22 2013 *)
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