OFFSET
1,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..10000
Hongwei Chen and G. C. Greubel, Sum of the Reciprocals of Polygonal Numbers (Solved), SIAM Problems and solutions.
Hongwei Chen and G. C. Greubel, Siam, Problems and Solutions, problem 07-003 and the solution
FORMULA
Sum_{n>=1} 2/(3*n^2 - n).
EXAMPLE
1.482037501770111223591657453125421381658405425375507779634198065524359698529473...
MATHEMATICA
RealDigits[Sum[2/(3*n^2-n), {n, 1, Infinity}], 10, 111][[1]]
RealDigits[3*Log[3] - Pi*Sqrt[3]/3, 10, 140][[1]] (* G. C. Greubel, Mar 24 2024 *)
PROG
(Magma) SetDefaultRealField(RealField(139)); R:= RealField(); 3*Log(3)-Pi(R)*Sqrt(3)/3; // G. C. Greubel, Mar 24 2024
(SageMath) numerical_approx(3*log(3)-pi*sqrt(3)/3, digits=139) # G. C. Greubel, Mar 24 2024
CROSSREFS
KEYWORD
AUTHOR
Robert G. Wilson v, Jul 03 2014
STATUS
approved