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.

A323482 Decimal expansion of 1/2 + 1/3 + 1/5 + ... + 1/(2^n + 1) + ...

Original entry on oeis.org

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

Views

Author

Clark Kimberling, Jan 15 2019

Keywords

Examples

			1.2644997803484442091913...
		

Crossrefs

Programs

  • Maple
    evalf((1/2) + add( (-1)^(n+1)*((4^n + 1)/(4^n - 1))*(1/2)^(n^2), n = 1..18), 100); # Peter Bala, Jan 28 2022
  • Mathematica
    s = Sum[1/(2^k + 1), {k, 0, Infinity}]
    r = N[Re[s], 200]
    RealDigits[r][[1]]
  • PARI
    suminf(k=0, 1/(2^k+1)) \\ Michel Marcus, Jan 15 2019

Formula

From Amiram Eldar, Jun 30 2020: (Start)
Equals 1/2 + Sum_{k>=1} (-1)^(k+1)/(2^k-1)
Equals Sum_{k>=1} (mu(k) - (-1)^k)/(2^k-1), where mu is the Möbius function (A008683).
Equals (1 + A179951)/2. (End)
Equals (1/2) + Sum_{n >= 1} (-1)^(n+1)*((4^n + 1)/(4^n - 1))*(1/2)^(n^2). The first 18 terms of the series gives the constant correct to more than 100 decimal places. - Peter Bala, Jan 28 2022