%I M2615 #34 Mar 11 2018 05:53:13
%S 1,3,7,9,7,2,9,6,6,1,4,6,1,2,1,4,8,3,2,3,9,0,0,6,3,4,6,4,2,1,6,0,1,7,
%T 6,9,2,8,5,5,6,4,9,8,7,7,9,7,7,6,0,6,1,2,1,7,7,2,7,3,7,6,7,4,7,9,1,5,
%U 0,6,1,8,9,4,2,1,6,3,5,8,3,3,1,5,6,5,8
%N Decimal expansion of fifth root of 5.
%C Fifth root of 5 = 5^(1/5). - _Harry J. Smith_, May 10 2009
%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
%H Harry J. Smith, <a href="/A005534/b005534.txt">Table of n, a(n) for n = 1..20000</a>
%e 1.379729661461214832390063464216017692855649877977606121772737674791506... - _Harry J. Smith_, May 10 2009
%t RealDigits[N[5^(1/5),200]][[1]] (* _Vladimir Joseph Stephan Orlovsky_, Jan 22 2012 *)
%o (PARI) { default(realprecision, 20080); x=5^(1/5); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b005534.txt", n, " ", d)); } \\ _Harry J. Smith_, May 10 2009
%Y Cf. A002951 (continued fraction). - _Harry J. Smith_, May 10 2009
%K nonn,cons
%O 1,2
%A _N. J. A. Sloane_