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.
%I A341423 #9 Feb 11 2021 18:44:21 %S A341423 1,5,32,94,219,437,804,1362,2177,3271,4768,6708,9227,12381,16254, %T A341423 20954,26707,33461,41480,50884,61703,74183,88606,104862,123481,144241, %U A341423 167604,193648,222799,254731,290244,329512,372545,419661,470822,526646,587481,653505 %N A341423 Number of positive solutions to (x_1)^2 + (x_2)^2 + (x_3)^2 + (x_4)^2 <= n^2. %H A341423 Alois P. Heinz, <a href="/A341423/b341423.txt">Table of n, a(n) for n = 2..1000</a> %H A341423 <a href="/index/Su#ssq">Index entries for sequences related to sums of squares</a> %F A341423 a(n) is the coefficient of x^(n^2) in expansion of (theta_3(x) - 1)^4 / (16 * (1 - x)). %p A341423 b:= proc(n, k) option remember; `if`(k=0, 1, `if`(n=0, 0, %p A341423 add((s->`if`(s>n, 0, b(n-s, k-1)))(j^2), j=1..isqrt(n)))) %p A341423 end: %p A341423 a:= n-> b(n^2, 4): %p A341423 seq(a(n), n=2..39); # _Alois P. Heinz_, Feb 11 2021 %t A341423 Table[SeriesCoefficient[(EllipticTheta[3, 0, x] - 1)^4/(16 (1 - x)), {x, 0, n^2}], {n, 2, 39}] %Y A341423 Cf. A000122, A001182, A046895, A055403, A055410, A063730, A224213, A253663, A302995, A341424, A341425, A341426, A341427, A341428, A341429. %K A341423 nonn %O A341423 2,2 %A A341423 _Ilya Gutkovskiy_, Feb 11 2021