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.

A132035 Decimal expansion of Product_{k>0} (1-1/7^k).

Original entry on oeis.org

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

Views

Author

Hieronymus Fischer, Aug 14 2007

Keywords

Examples

			0.8367954070890378710...
		

Crossrefs

Programs

  • Mathematica
    digits = 103; NProduct[1-1/7^k, {k, 1, Infinity}, NProductFactors -> 200, WorkingPrecision -> digits+3] // N[#, digits+3]& // RealDigits[#, 10, digits]& // First (* Jean-François Alcover, Feb 18 2014 *)
    RealDigits[QPochhammer[1/7], 10, 100][[1]] (* Amiram Eldar, May 09 2023 *)
  • PARI
    prodinf(k=1, 1 - 1/(7^k)) \\ Amiram Eldar, May 09 2023

Formula

Equals exp(-Sum_{n>0} sigma_1(n)/(n*7^n)) = exp(-Sum_{n>0} A000203(n)/(n*7^n)).
From Amiram Eldar, May 09 2023: (Start)
Equals sqrt(2*Pi/log(7)) * exp(log(7)/24 - Pi^2/(6*log(7))) * Product_{k>=1} (1 - exp(-4*k*Pi^2/log(7))) (McIntosh, 1995).
Equals Sum_{n>=0} (-1)^n/A027875(n). (End)