Sage is not computing a particular infinite sum correctly.
sage: sum(1/((n+1)*(2*n-1)), n, 0, 1000).n()
-0.205068171626375
sage: sum(1/((n+1)*(2*n-1)), n, 0, 10000).n()
-0.204618542543703
sage: sum(1/((n+1)*(2*n-1)), n, 0, 100000).n() # seems to be converging
-0.204573546255870
sage: sum(1/((n+1)*(2*n-1)), n, 0, oo).n() # but not to this number
-1.09345743518226
sage: sum(1/((n+1)*(2*n-1)), n, 0, oo)
2/3*log(2) - 14/9
I think the answer should be 2/3*log(2) - 2/3 -- that's what Mathematica says, and it is also consistent with the partial sums. (See
https://ask.sagemath.org/question/35354/sage-seems-to-be-improperly-computing-an-infinite-sum-and-giving-an-incorrect-answer/.) Is this a bug in Maxima? I don't know enough about Maxima's syntax to evaluate it directly there. Just for kicks, I also installed "giac", since that was listed as an option for the "algorithm" keyword for "sum":
sage: sum(1/((n+1)*(2*n-1)), n, 0, oo, algorithm='giac')
+Infinity
Not an improvement.
--
John