OFFSET
1,1
COMMENTS
The defining equation (3.10i) on page 1738 of the 1975 paper has a typo (m for n).
The value in Table 4 (page 1742, column h(2s)) seems to have two digits swapped.
LINKS
I. J. Zucker, Madelung constants and lattice sums for invariant cubic lattice complexes and certain tetragonal structures, J. Phys. A: Math. Gen. 8 (11) (1975) 1734, variable h(1).
I. J. Zucker, Functional equations for poly-dimensional zeta functions and the evaluation of Madelung constants, J. Phys. A: Math. Gen. 9 (4) (1976) 499, variable h(1).
FORMULA
Equals 4*log(1+sqrt(2)) + 8*Sum_{n>=1, p>=1} cosech(d*Pi)/d where d = sqrt(2*n^2 + (p-1/2)^2).
EXAMPLE
3.634899011049148711368042992007815327990...
MATHEMATICA
digits = 105; Clear[f]; f[n_, p_] := f[n, p] = (d = Sqrt[2 n^2 + (p - 1/2)^2]; (Csch[d*Pi]/d) // N[#, digits + 10] &); f[m_] := f[m] = 4 Log[1 + Sqrt[2]] + 8*Sum[f[n, p], {n, 1, m}, {p, 1, m}] // RealDigits[#, 10, digits + 10] & // First; f[0]; f[m = 10]; While[ f[m] != f[m - 10], Print[m]; m = m + 10]; f[m][[1 ;; digits]] (* Jean-François Alcover, Feb 21 2013 *)
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
R. J. Mathar, Jan 31 2011
EXTENSIONS
More terms from Jean-François Alcover, Feb 21 2013
STATUS
approved