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 A175377 #5 May 01 2019 15:32:13 %S A175377 1,7,27,27,33,81,117,125,125,131,251,275,275,311,335,335,349,493,493, %T A175377 613,613,637,637,697,697,727,871,991,999,1023,1143,1143,1191,1191, %U A175377 1215,1215,1281,1449,1569,1617,1737,1785,1785,1809,1889,1985,1985,2033,2033 %N A175377 a(n) = A175376(n^2). %C A175377 Number of integer triples (x,y,z) satisfying x^4+y^4+z^4 <= n^2, -n <= x,y,z <= n. %H A175377 Robert Israel, <a href="/A175377/b175377.txt">Table of n, a(n) for n = 0..10000</a> %p A175377 N:= 100: # to get a(1)..a(N) %p A175377 A:= Array(0..N): %p A175377 for i from 0 while i^4 <= N^2 do %p A175377 if i=0 then ai:= 1 else ai:= 2 fi; %p A175377 for j from 0 while i^4 + j^4 <= N^2 do %p A175377 if j=0 then aj:= 1 else aj:= 2 fi; %p A175377 for k from 0 do %p A175377 v:= ceil((i^4 + j^4 + k^4)^(1/2)); %p A175377 if v > N then break fi; %p A175377 if k = 0 then ak:= 1 else ak:= 2 fi; %p A175377 A[v..N]:= map(`+`,A[v..N] ,ai*aj*ak); %p A175377 od od od: %p A175377 convert(A,list); # _Robert Israel_, May 01 2019 %Y A175377 Cf. A055410, A175370. %K A175377 nonn %O A175377 0,2 %A A175377 _R. J. Mathar_, Apr 24 2010