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.

A143347 Decimal expansion of the paper-folding constant, or the dragon constant.

Original entry on oeis.org

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

Views

Author

Eric W. Weisstein, Aug 09 2008

Keywords

Comments

Named "the Gaussian Liouville number" by Borwein and Coons (2008). - Amiram Eldar, Apr 29 2021

Examples

			0.85073618820186726036...
		

References

  • Chandler Davis and Donald E. Knuth, Number Representations and Dragon Curves -- I and II, Journal of Recreational Mathematics, volume 3, number 2, April 1970, pages 66-81, and number 3, July 1970, pages 133-149. Reprinted in Donald E. Knuth, Selected Papers on Fun and Games, CSLI Publications, 2010, pages 571-614.
  • Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, section 6.8.5 Paper Folding, pages 439-440.

Crossrefs

Cf. A014577 (binary expansion), A034947.

Programs

  • Mathematica
    RealDigits[ N[ Sum[ 8^2^k/(2^2^(k + 2) - 1), {k, 0, Infinity}], 110]][[1]][[1 ;; 105]] (* Jean-François Alcover, Oct 26 2012 *)
  • PARI
    default(realprecision,510);
    c=sum(k=0, 10, 1.0/( 2^(2^k) * ( 1 - 1/(2^(2^(k+2))) ) ) )
    /* Joerg Arndt, Aug 28 2011 */

Formula

Equals Sum_{k>=1} A014577(k)/2^k = Sum_{k>=1} (1+A034947(k))/2^(k+1). - Amiram Eldar, Apr 29 2021