OFFSET
0,7
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..10000
Simon Plouffe, Numbers in the base e^Pi, arXiv:2509.15609 [math.NT], 2025. See p. 22/24, marked 215.
FORMULA
a(n) is sum of i^2 * j^2 * k^2 for positive integers i,j,k such that i^2+j^2+k^2=n.
Empirical: Sum_{n>=0} a(n) / exp(n*Pi) = (1/512) / Pi^(9/4) / Gamma(3/4)^3 = A389058. - Simon Plouffe, Sep 22 2025
PROG
(PARI) a(n) = sum(i=1, n, sum(j=1, n, sum(k=1, n, (i^2+j^2+k^2==n)*(i*j*k)^2)));
(PARI) my(N=66, x='x+O('x^N)); concat([0, 0, 0], Vec(sum(k=0, sqrtint(N), k^2*x^k^2)^3))
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 14 2021
STATUS
approved
