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 A275648 #9 Aug 04 2016 06:39:28 %S A275648 1,1,1,2,2,1,1,1,3,3,1,2,4,1,1,2,3,3,3,3,2,2,1,2,4,3,3,5,3,2,2,1,4,5, %T A275648 2,5,4,1,2,4,4,3,3,2,5,2,1,2,6,4,4,7,4,5,3,2,4,5,2,4,5,2,4,2,6,4,4,4, %U A275648 4,4,1,4,7,4,4,7,1,2,3,3 %N A275648 Number of ordered ways to write n as x^2*(1+y^2+z^2)+w^2, where x is a positive integer and y,z,w are nonnegative integers with y <= z <= w. %C A275648 Conjecture: a(n) > 0 for all n > 0, and a(n) = 1 only for n = 1, 3, 6, 7, 11, 14, 15, 23, 38, 47, 71, 77, 143, 152, 191, 608, 2^(2k+1) (k = 0,1,2,...). %C A275648 This is stronger than Lagrange's four-square theorem. %C A275648 See A275656 for a stronger conjecture. %H A275648 Zhi-Wei Sun, <a href="/A275648/b275648.txt">Table of n, a(n) for n = 1..10000</a> %H A275648 Zhi-Wei Sun, <a href="http://arxiv.org/abs/1604.06723">Refining Lagrange's four-square theorem</a>, arXiv:1604.06723 [math.GM], 2016. %e A275648 a(1) = 1 since 1 = 1^2*(1+0^2+0^2) + 0^2 with 0 = 0 = 0. %e A275648 a(2) = 1 since 2 = 1^2*(1+0^2+0^2) + 1^2 with 0 = 0 < 1. %e A275648 a(3) = 1 since 3 = 1^2*(1+0^2+1^2) + 1^2 with 0 < 1 = 1. %e A275648 a(6) = 1 since 6 = 1^2*(1+0^2+1^2) + 2^2 with 0 < 1 < 2. %e A275648 a(7) = 1 since 7 = 1^2*(1+1^2+1^2) + 2^2 with 1 = 1 < 2. %e A275648 a(11) = 1 since 11 = 1^2*(1+0^2+1^2) + 3^2 with 0 < 1 < 3. %e A275648 a(14) = 1 since 14 = 1^2*(1+0^2+2^2) + 3^2 with 0 < 2 < 3. %e A275648 a(15) = 1 since 15 = 1^2*(1+1^2+2^2) + 3^2 with 1 < 2 < 3. %e A275648 a(23) = 1 since 23 = 1^2*(1+2^2+3^2) + 3^2 with 2 < 3 = 3. %e A275648 a(38) = 1 since 38 = 1^2*(1+0^2+1^2) + 6^2 with 0 < 1 < 6. %e A275648 a(47) = 1 since 47 = 1^2*(1+1^2+3^2) + 6^2 with 1 < 3 < 6. %e A275648 a(71) = 1 since 71 = 1^2*(1+3^2+5^2) + 6^2 with 3 < 5 < 6. %e A275648 a(77) = 1 since 77 = 1^2*(1+2^2+6^2) + 6^2 with 2 < 6 = 6. %e A275648 a(143) = 1 since 143 = 1^2*(1+5^2+6^2) + 9^2 with 5 < 6 < 9. %e A275648 a(152) = 1 since 152 = 2^2*(1+0^2+1^2) + 12^2 with 0 < 1 < 12. %e A275648 a(191) = 1 since 191 = 1^2*(1+3^2+9^2) + 10^2 with 3 < 9 < 10. %e A275648 a(608) = 1 since 608 = 4^2*(1+0^2+1^2) + 24^2 with 0 < 1 < 24. %t A275648 SQ[n_]:=SQ[n]=IntegerQ[Sqrt[n]] %t A275648 Do[r=0;Do[If[SQ[n-x^2*(1+y^2+z^2)],r=r+1],{x,1,Sqrt[n]},{y,0,Sqrt[(n-x^2)/(2x^2+1)]},{z,y,Sqrt[(n-x^2*(1+y^2))/(x^2+1)]}];Print[n," ",r];Continue,{n,1,80}] %Y A275648 Cf. A000118, A000290, A271518, A275656. %K A275648 nonn %O A275648 1,4 %A A275648 _Zhi-Wei Sun_, Aug 04 2016