A190258 Decimal expansion of (x + sqrt(2 + 4x))/2, where x=sqrt(2).
2, 0, 9, 0, 6, 5, 7, 8, 5, 0, 8, 5, 2, 2, 4, 4, 7, 7, 5, 7, 1, 0, 0, 8, 9, 6, 3, 5, 0, 0, 5, 2, 2, 1, 3, 2, 8, 0, 9, 5, 8, 8, 0, 1, 7, 1, 5, 3, 5, 0, 8, 9, 6, 1, 5, 2, 7, 0, 1, 5, 4, 0, 8, 0, 1, 3, 6, 5, 3, 8, 6, 8, 6, 5, 8, 2, 3, 0, 1, 7, 6, 3, 7, 1, 1, 4, 3, 1, 5, 0, 4, 0, 4, 6, 0, 4, 2, 6, 3, 8, 4, 6, 7, 1, 8, 0, 8, 3, 2, 7, 8, 0, 6, 7, 6, 9, 3, 2, 5, 8
Offset: 1
Examples
2.090657850852244775710089635005221328095...
Links
- G. C. Greubel, Table of n, a(n) for n = 1..10000
Programs
-
Magma
[(Sqrt(2) + Sqrt(2+4*Sqrt(2)))/2]; // G. C. Greubel, Dec 26 2017
-
Mathematica
r=2^(1/2); FromContinuedFraction[{r,1, {r,1}}] FullSimplify[%] ContinuedFraction[%, 100] (* A190258 *) RealDigits[N[%%, 120]] (* A190259 *) N[%%%, 40] RealDigits[(Sqrt[2]+Sqrt[2+4Sqrt[2]])/2,10,120][[1]] (* Harvey P. Dale, Jun 20 2021 *)
-
PARI
sqrt(1/2)+sqrt(1/2+sqrt(2))
Comments