Find $\frac{1}{\log 2}+\frac{1}{(\log 2)(\log 3)}+\frac{1}{(\log 2)(\log 3)(\log 4)}+ \cdots$

155 Views Asked by At

Is it possible to calculate the sum of $\dfrac{1}{\log 2}+\dfrac{1}{(\log 2)(\log 3)}+\dfrac{1}{(\log 2)(\log 3)(\log 4)}+ \cdots$?

2

There are 2 best solutions below

2
On

Convergence is easily proven since the series can be written as $$\begin{align*} S &= \sum_{k=2}^\infty \biggl( \prod_{j=2}^k \log j \biggr)^{-1} \\ &= (\log 2)^{-1} \left( 1 + \sum_{k=3}^\infty \biggl( \prod_{j=3}^k \log j \biggr)^{-1} \right) \\ &< (\log 2)^{-1} \left( 1 + \sum_{k=1}^\infty (\log 3)^{-k}\right) \\ &= \frac{\log 3}{\log 2(\log 3 - 1)}.\end{align*}$$ A closed form value is substantially more difficult to obtain but I will leave this as an establishment of convergence.

0
On

Partial answer: let $$f(x)=\dfrac{1}{\log x}+\dfrac{1}{(\log x)(\log (x+1))}+\dfrac{1}{(\log x)(\log (x+1))(\log (x+2))}+ \cdots$$ then $$ \begin{align} f(x)&=\dfrac{1}{\log x}+\dfrac{1}{(\log x)(\log (x+1))}+\dfrac{1}{(\log x)(\log (x+1))(\log (x+2))}+ \cdots\\ f(x)&=\dfrac{1}{\log x}\left(1+\dfrac{1}{(\log (x+1))}+\dfrac{1}{(\log (x+1))(\log (x+2))}+ \cdots\right)\\ f(x)&= \frac{1+f(x+1)}{\log(x)}\\ \implies f(x+1)&=\log(x) f(x)-1 \end{align} $$ So we now have a recurrence relation for the function, and we are seeking $f(2)$. By repeatedly reducing $f(x+n+1)$, we also obtain $$f(x+n)=\left(\prod_{k=0}^{n-1}\log(x+k)\right) f(x)-\sum_{k=0}^{n-1}\prod_{i=1}^{n-1}\log(x+i)$$

So if we can come up with $f(x)$ for some integer $x$, we can come up with $f(x)$ for any integer $x$. I can't seem to come up with a value for anything though, so hopefully someone else can.