OFFSET
1,2
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
EXAMPLE
1.245730939615517325966680336640305080939309993068779811046173... - Harry J. Smith, May 12 2009
MAPLE
Digits := 200: it := evalf(3^(1/5)/10, 200)-floor(evalf(3^(1/5)/10, 200)): for i from 1 to 150 do printf(`%d, `, floor(10*it)): it := 10*it-floor(10*it): od:
MATHEMATICA
RealDigits[N[3^(1/5), 200]][[1]] (* Vladimir Joseph Stephan Orlovsky, Jan 22 2012 *)
RealDigits[Surd[3, 5], 10, 120][[1]] (* Harvey P. Dale, Dec 10 2024 *)
PROG
(PARI) { default(realprecision, 20080); x=3^(1/5); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b005532.txt", n, " ", d)); } \\ Harry J. Smith, May 12 2009
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
EXTENSIONS
More terms from James A. Sellers, Feb 19 2001
STATUS
approved