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.

A242724 Decimal expansion of a constant associated with self-generating continued fractions and Cahen's constant.

Original entry on oeis.org

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

Views

Author

Jean-François Alcover, May 21 2014

Keywords

Comments

This constant is known to be transcendental.
Called the "Davison-Shallit constant" by Finch (2003) and Sondow (2021). - Amiram Eldar, Mar 19 2024

Examples

			0.62946502045518677183129422910723212269353...
		

References

  • Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 6.7, p. 435.

Crossrefs

Programs

  • Mathematica
    digits = 100; Clear[q, s]; q[n_] := q[n] = q[n - 2]*(q[n-1] + 1); q[0] = q[1] = 1; s[k_] := s[k] = Sum[(-1)^j/(q[j]*q[j+1]), {j, 0, k}] // N[#, digits+5]&; s[dk = 5]; s[k = 2*dk]; While[RealDigits[s[k], 10, digits] != RealDigits[s[k - dk], 10, digits], Print["k = ", k]; k = k + dk]; RealDigits[s[k], 10, digits] // First

Formula

Equals Sum_{k>=0} (-1)^k/(A006277(k)*A006277(k+1)). - Amiram Eldar, Mar 19 2024