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 #15 Mar 22 2024 04:20:19
%S 3,2,1,2,1,1,1,1,7,1,1,6,3,1,1,1,4,2,6,2,1,1,5,2,1,1,2,2,23,358,1,5,1,
%T 3,4,3,2,3,4,3,1,6,4,1,3,8,482,4,4,2,12,2,1,17,49,7,2,1,6,1,3,2,1,1,3,
%U 1,9,1,145,41,2,480,4,10
%N Continued fraction for log(29).
%H Harry J. Smith, <a href="/A016457/b016457.txt">Table of n, a(n) for n = 1..20000</a>
%e 3.367295829986474027183272032... = 3 + 1/(2 + 1/(1 + 1/(2 + 1/(1 + ...)))). - _Harry J. Smith_, May 20 2009
%t ContinuedFraction[Log[29], 100] (* _Paolo Xausa_, Mar 22 2024 *)
%o (PARI) { allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(29)); for (n=1, 20000, write("b016457.txt", n, " ", x[n])); } \\ _Harry J. Smith_, May 20 2009
%Y Cf. A016652 Decimal expansion. - _Harry J. Smith_, May 20 2009
%K nonn,cofr
%O 1,1
%A _N. J. A. Sloane_