login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A341397 Number of integer solutions to (x_1)^2 + (x_2)^2 + ... + (x_8)^2 <= n. 4

%I #9 Feb 10 2021 19:28:52

%S 1,17,129,577,1713,3729,6865,12369,21697,33809,47921,69233,101041,

%T 136209,174737,231185,306049,384673,469457,579217,722353,876465,

%U 1025649,1220337,1481521,1733537,1979713,2306753,2697537,3087777,3482913,3959585,4558737,5155473

%N Number of integer solutions to (x_1)^2 + (x_2)^2 + ... + (x_8)^2 <= n.

%C Partial sums of A000143.

%H <a href="/index/Su#ssq">Index entries for sequences related to sums of squares</a>

%F G.f.: theta_3(x)^8 / (1 - x).

%F a(n^2) = A055414(n).

%p b:= proc(n, k) option remember; `if`(n=0, 1, `if`(n<0 or k<1, 0,

%p b(n, k-1)+2*add(b(n-j^2, k-1), j=1..isqrt(n))))

%p end:

%p a:= proc(n) option remember; b(n, 8)+`if`(n>0, a(n-1), 0) end:

%p seq(a(n), n=0..33); # _Alois P. Heinz_, Feb 10 2021

%t nmax = 33; CoefficientList[Series[EllipticTheta[3, 0, x]^8/(1 - x), {x, 0, nmax}], x]

%t Table[SquaresR[8, n], {n, 0, 33}] // Accumulate

%Y Cf. A000122, A000143, A001650, A046895, A055407, A055414, A057655, A117609, A122510, A175360, A175361, A302860, A341396, A341398, A341399.

%K nonn

%O 0,2

%A _Ilya Gutkovskiy_, Feb 10 2021

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 12:31 EDT 2024. Contains 371937 sequences. (Running on oeis4.)