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.

A258232 Decimal expansion of Integral_{x=0..1} Product_{k>=1} (1-x^k) dx.

Original entry on oeis.org

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

Views

Author

Vaclav Kotesovec, May 24 2015

Keywords

Examples

			0.3684125359314336523213165973278510150142413039288199683036158...
		

References

  • József Sándor and Borislav Crstici, Handbook of Number theory II, Kluwer Academic Publishers, 2004, Chapter 4, p. 424.

Crossrefs

Cf. A258406 (m=2), A258407 (m=3), A258404 (m=4), A258405 (m=5).

Programs

  • Maple
    evalf(8*sqrt(3/23)*Pi*sinh(sqrt(23)*Pi/6)/(2*cosh(sqrt(23)*Pi/3)-1), 123);
    evalf(Sum((-1)^n/((3*n-1)*n/2 + 1), n=-infinity..infinity), 123);
  • Mathematica
    RealDigits[N[8*Sqrt[3/23]*Pi*Sinh[Sqrt[23]*Pi/6] / (2*Cosh[Sqrt[23]*Pi/3]-1),120]][[1]]
  • PARI
    8*Pi*sqrt(3/23) * sinh(sqrt(23)*Pi/6) / (2*cosh(sqrt(23)*Pi/3) - 1) \\ Michel Marcus, Nov 28 2018

Formula

Equals 8*Pi*sqrt(3/23) * sinh(sqrt(23)*Pi/6) / (2*cosh(sqrt(23)*Pi/3) - 1).
From Amiram Eldar, Feb 04 2024: (Start)
Equals 2 * Sum_{k=-oo..oo} (-1)^k/(3*k^2 + k + 2).
Equals Sum_{k>=0} (-1)^A000120(k)/(A029931(k)+1) (Borwein and Borwein, 1992). (End)