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”).
%I #7 May 23 2024 13:31:35
%S 1,3,6,5,3,0,0,9,4,8,6,0,4,0,0,2,9,6,7,5,5,2,7,4,2,1,6,8,9,8,6,7,3,7,
%T 0,5,7,8,9,5,7,0,6,7,6,4,0,2,2,9,2,6,9,4,8,2,7,4,6,8,6,1,1,5,0,4,9,7,
%U 1,6,5,8,4,1,1,3,5,2,2,3,8,4,5,5,6,0,6,8,5,8,8,6,3,4,1,5,3,6,9,3,1
%N Decimal expansion of a nested radical: CubeRoot(1 + CubeRoot(2 + CubeRoot(3 + CubeRoot(4 + ...
%e 1.365300948604002967552742168986737...
%t RealDigits[ Fold[(#1 + #2)^(1/3) &, 0, Reverse[Range[100]]], 10, 111][[1]]
%o (PARI) t=0; forstep(n=200,1,-1,t=(t+n)^(1/3)); t
%Y Cf. A072449 for version using square root rather than cube root.
%K cons,easy,nonn
%O 1,2
%A Mark Hudson (mrmarkhudson(AT)hotmail.com), Nov 02 2004