OFFSET
1,2
LINKS
Seiichi Manyama, Table of n, a(n) for n = 1..10000
Henri Cohen, Sums involving the values at negative integers of L-functions of quadratic characters, Math. Ann. 217 (1975), no. 3, 271-285. MR0382192 (52 #3080).
FORMULA
a(n) = - Sum_{k in Z} (k^2-n)*H(4*n-k^2) where H() is the Hurwitz class number.
MATHEMATICA
a[n_] := DivisorSum[n, Min[#, n/#]^3 &]; Array[a, 65] (* Amiram Eldar, Oct 04 2023*)
PROG
(PARI) {a(n) = sumdiv(n, d, min(d, n/d)^3)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 06 2018
STATUS
approved