A309893 Decimal expansion of AGM(1, sqrt(3)/2).
9, 3, 1, 8, 0, 8, 3, 9, 1, 6, 2, 2, 4, 4, 8, 2, 7, 1, 1, 7, 7, 8, 4, 4, 5, 1, 5, 5, 1, 2, 1, 3, 5, 2, 9, 7, 5, 7, 8, 7, 6, 6, 4, 2, 8, 4, 1, 3, 4, 2, 6, 8, 6, 1, 1, 1, 0, 2, 2, 0, 6, 1, 3, 4, 8, 9, 1, 6, 2, 8, 9, 7, 2, 8
Offset: 0
Examples
0.931808391622448271177844...
Links
- Wikipedia, Pendulum (mechanics)
Programs
-
Mathematica
RealDigits[ArithmeticGeometricMean[1, Sqrt[3]/2], 10, 100][[1]] (* Amiram Eldar, Aug 21 2019 *)
-
PARI
agm(1, sqrt(3)/2) \\ Michel Marcus, Aug 22 2019
-
Python
import decimal prec = int(input('Precision: ')) decimal.getcontext().prec = prec D = decimal.Decimal def agm(a, b): for x in range(prec): a, b = (a + b) / 2,(a * b).sqrt() return a print(agm(1, D(3).sqrt()/2))
-
Sage
RealField(300)(1.0).agm(sqrt(3)/2) # Peter Luschny, Aug 22 2019
Formula
AGM(1, sin(Pi/3)).
Comments