OFFSET
0,2
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..20000
EXAMPLE
1.178097245096172464423491268... = 1 + 1/(5 + 1/(1 + 1/(1 + 1/(1 + ...))))
MAPLE
convert(3*Pi/8, confrac, 105); # G. C. Greubel, Aug 11 2019
MATHEMATICA
ContinuedFraction[(3*Pi)/8, 120] (* Harvey P. Dale, Mar 13 2016 *)
PROG
(PARI) { allocatemem(932245000); default(realprecision, 21000); x=contfrac(3*Pi/8); for (n=0, 20000, write("b161685.txt", n, " ", x[n+1])); }
(Magma) SetDefaultRealField(RealField(105)); R:= RealField(); ContinuedFraction(3*Pi(R)/8); // G. C. Greubel, Aug 11 2019
(Sage) continued_fraction_list(3*pi/8, nterms=105) # G. C. Greubel, Aug 11 2019
CROSSREFS
KEYWORD
nonn,cofr
AUTHOR
Harry J. Smith, Jun 18 2009
STATUS
approved