A161686 Continued fraction for Pi/(3*sqrt(2)).
0, 1, 2, 1, 5, 1, 4, 2, 2, 1, 1, 2, 2, 2, 6, 1, 1, 1, 5, 2, 1, 1, 1, 1, 1, 6, 2, 3, 1, 11, 1, 2, 1, 21, 1, 6, 11, 1, 3, 1, 1, 1, 1, 6, 2, 3, 1, 2, 3, 20, 2, 5, 1, 1, 48, 1, 1, 1, 3, 1, 23, 8, 1, 8, 3, 4, 2, 1, 1, 9, 1, 4, 1, 4, 19, 18, 1, 1, 5, 6, 1, 39, 192, 2, 1, 1, 1, 1, 1, 2, 19, 1, 3, 5, 13, 98, 1, 1
Offset: 0
Keywords
Examples
0.740480489693061041169313498... = 0 + 1/(1 + 1/(2 + 1/(1 + 1/(5 + ...))))
Links
- Harry J. Smith, Table of n, a(n) for n = 0..20000
Crossrefs
Cf. A093825 Decimal expansion.
Programs
-
Mathematica
ContinuedFraction[Pi/(3*Sqrt[2]),120] (* Harvey P. Dale, Nov 11 2017 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 21000); x=contfrac(Pi*sqrt(2)/6); for (n=0, 20000, write("b161686.txt", n, " ", x[n+1])); }