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!)
A294712 Numbers that are the sum of three squares (square 0 allowed) in exactly nine ways. 2

%I #17 Nov 01 2019 22:21:41

%S 425,521,545,569,614,650,701,725,729,774,809,810,845,857,953,974,989,

%T 990,1053,1062,1070,1074,1091,1118,1134,1139,1166,1179,1217,1249,1251,

%U 1262,1266,1277,1298,1310,1418,1446,1458,1470,1525,1541,1546,1571,1594,1611

%N Numbers that are the sum of three squares (square 0 allowed) in exactly nine ways.

%C These are the numbers for which A000164(a(n)) = 9.

%C a(n) is the n-th largest number which has a representation as a sum of three integer squares (square 0 allowed), in exactly nine ways, if neither the order of terms nor the signs of the numbers to be squared are taken into account. The multiplicity of a(n) with order and signs taken into account is A005875(a(n)).

%C This sequence is a proper subsequence of A000378.

%H Robert Price, <a href="/A294712/b294712.txt">Table of n, a(n) for n = 1..1105</a>

%e 545 = 8^2 + 15^2 + 16^2

%e = 0^2 + 16^2 + 17^2

%e = 10^2 + 11^2 + 18^2

%e = 5^2 + 14^2 + 18^2

%e = 8^2 + 9^2 + 20^2

%e = 1^2 + 12^2 + 20^2

%e = 2^2 + 10^2 + 21^2

%e = 5^2 + 6^2 + 22^2

%e = 0^2 + 4^2 + 23^2. - _Robert Israel_, Nov 08 2017

%p N:= 10000: # to get all terms <= N

%p V:= Array(0..N):

%p for i from 0 to isqrt(N) do

%p for j from 0 to i while i^2 + j^2 <= N do

%p for k from 0 to j while i^2 + j^2 + k^2 <= N do

%p t:= i^2 + j^2 + k^2;

%p V[t]:= V[t]+1;

%p od od od:

%p select(t -> V[t] = 9, [$1..N]); # _Robert Israel_, Nov 08 2017

%t Select[Range[0, 1000], Length[PowersRepresentations[#, 3, 2]] == 9 &]

%Y Cf. A000164, A005875, A000378, A094942, A224442, A224443, A294577, A294594, A294595, A294710, A294711.

%K nonn

%O 1,1

%A _Robert Price_, Nov 07 2017

%E Updated Mathematica program to Version 11. by _Robert Price_, Nov 01 2019

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 17 21:22 EDT 2024. Contains 371767 sequences. (Running on oeis4.)