cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A185581 Decimal expansion of 8*Sum_{m,n,p = -infinity..infinity} (-1)^(m + n + p)/ sqrt( (2*m-1/2)^2+(2*n-1/2)^2+(2*p-1/2)^2 ).

This page as a plain text file.
%I A185581 #20 Mar 11 2018 05:57:48
%S A185581 2,5,3,3,5,5,7,4,0,4,4,3,3,1,2,1,0,2,5,2,9,4,8,6,2,7,9,5,7,1,8,9,2,9,
%T A185581 1,1,1,1,2,9,7,9,6,9,6,3,9,8,2,7,4,9,9,5,8,9,7,0,3,6,9,7,0,6,5,3,4,5,
%U A185581 3,6,3,0,6,1,2,0,3,5,5,6,9,7,0,8,0,1,6,4,9,3,0,6,1,0,8,8,8,1,1,3,7,1,0,4,2
%N A185581 Decimal expansion of 8*Sum_{m,n,p = -infinity..infinity} (-1)^(m + n + p)/ sqrt( (2*m-1/2)^2+(2*n-1/2)^2+(2*p-1/2)^2 ).
%C A185581 The formula for g(1) in the 1976 paper on page 503 is a factor 2 too large.
%H A185581 I. J. Zucker, <a href="https://dx.doi.org/10.1088/0305-4470/8/11/008">Madelung constants and lattice sums for invariant cubic lattice complexes and certain tetragonal structures</a>, J. Phys. A: Math. Gen. 8 (11) (1975) 1734, variable g(1).
%H A185581 I. J. Zucker, <a href="http://dx.doi.org/10.1088/0305-4470/9/4/006">Functional equations for poly-dimensional zeta functions and the evaluation of Madelung constants</a>, J. Phys. A: Math. Gen. 9 (4) (1976) 499, variable g(1).
%F A185581 Equals 2*sqrt(2)*Sum_{n,p = -infinity..infinity} (-1)^n*cosech(d*Pi)/d where d = sqrt( (2*n-1/2)^2/2 + (p-1/2)^2 ).
%e A185581 2.533557404433121025294862795718...
%t A185581 digits = 105; Clear[f]; f[n_, p_] := f[n, p] = (d = Sqrt[(2 n - 1/2)^2/2 + (p - 1/2)^2]; (-1)^n*(Csch[d*Pi]/d) // N[#, digits + 10] &); f[m_] := f[m] = 2 Sqrt[2]*Sum[f[n, p], {n, -m, m}, {p, -m, 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 *)
%Y A185581 Cf. A185576, A185577, A185578, A185579, A185580, A185582, A185583.
%K A185581 cons,nonn
%O A185581 1,1
%A A185581 _R. J. Mathar_, Jan 31 2011
%E A185581 More terms from _Jean-François Alcover_, Feb 21 2013