login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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, 21029300554772499, 97202454420912990, 440023525444970228, 783944985766933369, 1277151495727998611, 2283977463662240937, 72927208535053310211, 365439872472838714161, 740751647624914930138
OFFSET
1,1
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
KEYWORD
nonn,base,hard
AUTHOR
Robert Tanniru, Nov 18 2013
EXTENSIONS
More terms from Bert Dobbelaere, Jun 23 2024
STATUS
approved