cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A073007 Decimal expansion of Varga's constant.

Original entry on oeis.org

9, 2, 8, 9, 0, 2, 5, 4, 9, 1, 9, 2, 0, 8, 1, 8, 9, 1, 8, 7, 5, 5, 4, 4, 9, 4, 3, 5, 9, 5, 1, 7, 4, 5, 0, 6, 1, 0, 3, 1, 6, 9, 4, 8, 6, 7, 7, 5, 0, 1, 2, 4, 4, 0, 8, 2, 3, 9, 7, 0, 0, 6, 1, 4, 2, 1, 7, 2, 9, 3, 7, 5, 2, 4, 7, 2, 8, 6, 5, 0, 7, 0, 7, 0, 5, 2, 4, 1, 5, 8, 7, 0, 6, 1, 4, 2, 4, 7, 1, 4, 4
Offset: 1

Views

Author

Robert G. Wilson v, Aug 03 2002

Keywords

Comments

Equals the reciprocal of the one-ninth constant A072558.
Named after the American mathematician Richard Steven Varga (1928-2022). - Amiram Eldar, Jun 22 2021

Examples

			9.28902549192081891875544943595174506...
		

References

  • Steven R. Finch, Mathematical Constants, Encyclopedia of Mathematics and its Applications, vol. 94, Cambridge University Press, 2003, Section 4.5, p. 260.
  • R. S. Varga, Scientific Computation on Mathematical Problems and Conjectures, CBMS-NSF Regional Conference Series in Applied Mathematics, Vol. 60, Philadelphia, PA: SIAM, 1990. See Chapter 2, pp. 23-38.

Crossrefs

Cf. A072558.

Programs

  • Mathematica
    nmax=250; c = k /. FindRoot[EllipticK[k^2] == 2*EllipticE[k^2], {k, 9/10}, WorkingPrecision -> nmax]; Take[RealDigits[1/N[Exp[-Pi*(EllipticK[1 - c^2]/EllipticK[c^2])], nmax]][[1]], 200] (* G. C. Greubel, Mar 10 2018 *)
    RealDigits[v /. FindRoot[4 EllipticE[InverseEllipticNomeQ[1/v]] == Pi EllipticTheta[3, 0, 1/v]^2, {v, 9, 9, 10}, WorkingPrecision -> 101]][[1]] (* Jan Mangaldan, Jun 25 2020 *)