OFFSET
0,1
LINKS
Eric Weisstein's World of Mathematics, Delian Constant
EXAMPLE
The fractional part of 2^(1/3) begins 259921049894873164767210607278... so the first occurrence of 0 is at position 7; the first occurrence of 1 is at position 6; etc.
MATHEMATICA
Join[{7}, With[{cr2=Rest[RealDigits[2^(1/3), 10, 1000][[1]]]}, Flatten[ Table[Position[ Partition[cr2, IntegerLength[n], 1], IntegerDigits[n], 1, 1], {n, 70}]]]] (* Harvey P. Dale, Nov 28 2012 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Mark Hudson (mrmarkhudson(AT)hotmail.com), Nov 04 2004
STATUS
approved