OFFSET
0,2
REFERENCES
H. Gupta, A Table of Values of N_3(t), Proc. National Institute of Sciences of India, 13 (1947), 35-63.
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
T. D. Noe, Table of n, a(n) for n = 0..1000
FORMULA
G.f.: (1/(1 - x))*(Sum_{k>=0} x^(k^2))^3. - Ilya Gutkovskiy, Mar 14 2017
MATHEMATICA
nn = 50; t = Table[0, {nn}]; Do[d = x^2 + y^2 + z^2; If[0 < d <= nn, t[[d]]++], {x, 0, nn}, {y, 0, nn}, {z, 0, nn}]; Accumulate[Join[{1}, t]] (* T. D. Noe, Apr 01 2013 *)
PROG
(Python)
for n in range(99):
k = 0
for x in range(99):
s = x*x
if s > n: break
for y in range(99):
sy = s + y*y
if sy > n: break
for z in range(99):
sz = sy + z*z
if sz > n: break
k += 1
print(str(k), end=', ')
# Alex Ratushnyak, Apr 01 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Sean A. Irvine, Dec 01 2010
STATUS
approved