Find the sum of infinite series
$$\frac{1}{4}+\frac{2}{4 \cdot 7}+\frac{3}{4 \cdot 7 \cdot 10}+\frac{4}{4 \cdot 7 \cdot 10 \cdot 13 }+....$$
Generally I do these questions by finding sum of $n$ terms and then putting $ \lim{n \to \infty}$ but here I am not able to find sum of $n$ terms. Could some suggest as how to proceed?
Sum[k Product[1/(3 n + 1), {n, 1, k}], {k, 1, Infinity}]– Yuriy S Jan 16 '17 at 16:09