OFFSET
1,1
COMMENTS
Quartic 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, Jan 22 2022
LINKS
R. J. Mathar, The series limit of sum_k 1/[k log k (log log k)^2], arXiv:0902.0789 [math.NA], 2009-2021, last sentence.
Wikipédia, Série de Bertrand (in French).
EXAMPLE
2.5591197429867314185720209703107629336191781563668...
MATHEMATICA
(* Computation needs a few minutes *) digits = 105; NSum[ 1/(n*Log[n]^4), {n, 2, Infinity}, NSumTerms -> 800000, WorkingPrecision -> digits + 5, 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