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 A004833 #24 Sep 05 2025 23:47:16 %S A004833 0,1,2,3,4,16,17,18,19,32,33,34,48,49,64,81,82,83,84,97,98,99,113,114, %T A004833 129,162,163,164,178,179,194,243,244,256,257,258,259,272,273,274,288, %U A004833 289,304,324,337,338,339,353,354,369,418,419,434,499,512,513,514,528,529,544,593,594,609,625,626,627,628,641,642,643 %N A004833 Numbers that are the sum of at most 4 nonzero 4th powers. %H A004833 Alois P. Heinz, <a href="/A004833/b004833.txt">Table of n, a(n) for n = 1..20000</a> (first 1000 terms from T. D. Noe) %t A004833 Reap[For[n = 0, n < 1000, n++, If[MatchQ[ PowersRepresentations[n, 4, 4], {{_, _, _, _}, ___}], Print[n]; Sow[n]]]][[2, 1]] (* _Jean-François Alcover_, Oct 30 2017 *) %o A004833 (PARI) N=1000; x='x+O('x^N); /* terms up to N-1 */ %o A004833 S=ceil(N^(1/4)); %o A004833 v=Vec(sum(k=-S,S,x^(k^4))^4); %o A004833 for(n=1,#v,if(v[n]!=0,print1(n-1,", "))); /* _Joerg Arndt_, Jun 25 2011 */ %Y A004833 Column k=4 of A336820. %K A004833 nonn,changed %O A004833 1,3 %A A004833 _N. J. A. Sloane_