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!)
A232110 Fourth root of n contains n as a string of digits to the immediate right of the decimal point (excluding leading zeros). 4
3, 4, 27, 1913227, 9821998, 3588613885932, 7625632704605, 50859949338383 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Robert Tanniru, PARI code
EXAMPLE
1913227^(1/4) = 37.19132279207...
PROG
(PARI) isok(n) = {if (ispower(n, 4), return (0)); fr = frac(n^(1/4)); while (frac(fr) < 1/10, fr *= 10); nd = length(digits(n)); fr *= 10^nd; floor(fr) == n; } \\ Michel Marcus, Nov 20 2013
(PARI) /*Sample Run Using a = [0, 14], b=10, p=4 using PARI code in link */
GetAllGIs(0, 14, 10, 4, 1)
CROSSREFS
Sequence in context: A362887 A367388 A042829 * A140896 A005326 A298561
KEYWORD
nonn,base,hard
AUTHOR
Robert Tanniru, Nov 18 2013
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 April 24 19:06 EDT 2024. Contains 371962 sequences. (Running on oeis4.)