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!)
A283306 List points (x,y) having integer coordinates with x >= 0, y >= 0, sorted first by x^2+y^2 and in case of a tie, by x-coordinate. Sequence gives y-coordinates. 5

%I #17 Mar 06 2023 08:15:35

%S 0,1,0,1,2,0,2,1,2,3,0,3,1,3,2,4,0,4,1,3,4,2,5,4,3,0,5,1,5,2,4,5,3,6,

%T 0,6,1,6,2,5,4,6,3,7,0,7,5,1,6,4,7,2,7,3,6,5,8,0,8,7,4,1,8,2,6,8,3,7,

%U 5,8,4,9,0,9,1,9,7,6,2,8,5,9,3,9,4,7,10,8,6,0,10,1,10,2,9,5,10,3,8,7

%N List points (x,y) having integer coordinates with x >= 0, y >= 0, sorted first by x^2+y^2 and in case of a tie, by x-coordinate. Sequence gives y-coordinates.

%e The first few points (listing [x^2+y^2,x,y]) are: [0, 0, 0], [1, 0, 1], [1, 1, 0], [2, 1, 1], [4, 0, 2], [4, 2, 0], [5, 1, 2], [5, 2, 1], [8, 2, 2], [9, 0, 3], [9, 3, 0], [10, 1, 3], [10, 3, 1], [13, 2, 3], [13, 3, 2], [16, 0, 4], [16, 4, 0], [17, 1, 4], [17, 4, 1], [18, 3, 3], [20, 2, 4], [20, 4, 2], [25, 0, 5], [25, 3, 4], [25, 4, 3], ...

%p L:=[];

%p M:=30;

%p for i from 0 to M do

%p for j from 0 to M do

%p L:=[op(L),[i^2+j^2,i,j]]; od: od:

%p t4:= sort(L,proc(a,b) evalb(a[1]<=b[1]); end);

%p t4x:=[seq(t4[i][2],i=1..100)]; # A283305

%p t4y:=[seq(t4[i][3],i=1..100)]; # A283306

%t nt = 105; (* number of terms to produce *)

%t S[m_] := S[m] = Table[{x, y}, {x, 0, m}, {y, 0, m}] // Flatten[#, 1]& // SortBy[#, {#.#&, #[[1]]&}]& // #[[All, 2]]& // PadRight[#, nt]&

%t S[m = 2];

%t S[m = 2m];

%t While[S[m] =!= S[m/2], m = 2m];

%t S[m] (* _Jean-François Alcover_, Mar 05 2023 *)

%o (PARI) for(r2=0,113,for(x=0,round(sqrt(r2)),y2=r2-x^2; if(issquare(y2), print1(round(sqrt(y2)),", ")))) \\ _Hugo Pfoertner_, Jun 18 2018

%Y For the x coordinates see A283305.

%Y See also A283303, A283304.

%K nonn

%O 1,5

%A _N. J. A. Sloane_, Mar 04 2017, following a suggestion from _Ahmet Arduç_.

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 25 08:25 EDT 2024. Contains 371964 sequences. (Running on oeis4.)