OFFSET
1,1
COMMENTS
Quintic analog of A115563. Evaluated by direct summation of the first 160 terms and accumulating the remainder with the 5 nontrivial terms in the Euler-Maclaurin expansion.
Bertrand series Sum_{n>=2} 1/(n*log(n)^q) is convergent iff q > 1. - Bernard Schott, Feb 08 2022
LINKS
Wikipédia, Série de Bertrand (in French).
EXAMPLE
3.4298162600230560650224115856558605404523762001207...
MATHEMATICA
(* Computation needs a few minutes *) digits = 105; NSum[ 1/(n*Log[n]^5), {n, 2, Infinity}, NSumTerms -> 1500000, WorkingPrecision -> digits + 10, Method -> {"EulerMaclaurin", Method -> {"NIntegrate", "MaxRecursion" -> 10}}] // RealDigits[#, 10, digits] & // First (* Jean-François Alcover, Feb 12 2013 *)
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
R. J. Mathar, Feb 08 2009
EXTENSIONS
More terms from Jean-François Alcover, Feb 12 2013
STATUS
approved