login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A119520 The first 10 digits of the fifth root of n contain the digits 0-9. 0
911, 1974, 2326, 6236, 8346, 8403, 9301, 15317, 17412, 17601, 20512, 21914, 22211, 23513, 25510, 26192, 31591, 32432, 36947, 39194, 39783, 40414, 43141, 47511, 49116, 49606, 51014, 52604, 57547, 57753, 61087, 64023, 64747, 64913, 64949 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
n=911. n^(1/5) = 3.907542186..., so 911 the first entry.
MATHEMATICA
Select[Range[65000], Union[RealDigits[Surd[#, 5], 10, 10][[1]]]==Range[ 0, 9]&] (* Harvey P. Dale, May 27 2019 *)
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
Sequence in context: A352441 A210170 A068261 * A145646 A093634 A220984
KEYWORD
base,easy,nonn
AUTHOR
Cino Hilliard, May 27 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 16 05:19 EDT 2024. Contains 374343 sequences. (Running on oeis4.)