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.

A178768 Decimal expansion of real constant in an explicit counterexample to the Lagarias-Wang finiteness conjecture.

Original entry on oeis.org

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

Views

Author

Jonathan Vos Post, Jun 11 2010

Keywords

Examples

			0.74932654633036755794396194809134467209132737023606431735802...
		

Crossrefs

Programs

  • PARI
    t(n) = if (n==0, 1, if (n==1, 2, if (n==2, 2, t(n-1)*t(n-2) - t(n-3)))); \\ A022405
    prodinf(n=1, (1 - t(n-1)/(t(n)*t(n+1)))^((-1)^n*fibonacci(n+1))) \\ Michel Marcus, Jun 14 2015; May 10 2019

Formula

Equals Product_{n >= 1} (1 - t(n-1)/(t(n)*t(n+1)))^((-1)^n*Fibonacci(n+1)), where t(n) = A022405(n+1) and Fibonacci(n) = A000045(n). See Theorem 1.1 of Hare et al. (2010, 2011). - Michel Marcus, May 10 2019

Extensions

More terms from Amiram Eldar, May 15 2021