3.81771232595690473174160806... = 3 + 1/(1 + 1/(4 + 1/(2 + 1/(17 + ...)))). - Harry J. Smith, May 30 2009
MATHEMATICA
ContinuedFraction[Log[91/2], 100] (* Harvey P. Dale, Jul 24 2011 *)
PROG
(PARI) { allocatemem(932245000); default(realprecision, 21000); x=contfrac(log(91/2)); for (n=1, 20000, write("b016573.txt", n, " ", x[n])); } \\ Harry J. Smith, May 30 2009