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!)
A234334 Numbers k such that both distances from k to two nearest squares are perfect squares. 5

%I #23 May 28 2023 03:14:15

%S 0,1,5,8,25,40,45,65,80,153,160,169,200,221,325,360,416,425,493,520,

%T 625,680,725,925,936,1025,1040,1073,1088,1305,1360,1681,1768,1800,

%U 1813,1845,1961,2000,2320,2385,2501,2600,2925,3016,3185,3200,3400,3445,3721,3848

%N Numbers k such that both distances from k to two nearest squares are perfect squares.

%C Except a(1)=0, a(n) are numbers k such that both k-x and y-k are perfect squares, where x and y are two nearest to k squares: x < k <= y.

%C The sequence of sums of distances begins: 1, 1, 5, 5, 9, 13, 13, 17, 17, 25, 25, 25, 29, 29, 37, 37, 41, 41, 45, 45, 49, 53, 53, 61, 61, 65, 65, 65, 65, 73, 73, 81, 85, ... (cf. A057653).

%C Each term is either a square or has a pair: if i^2 + j^2 = 2*m+1 then m^2+i^2 and m^2+j^2 are both in the sequence.

%H Robert Israel, <a href="/A234334/b234334.txt">Table of n, a(n) for n = 1..6000</a>

%e The two squares nearest to 25 are 16 and 25, because both 25-25=0 and 25-16=9 are squares, 25 is in the sequence.

%e The two squares nearest to 45 are 36 and 49, because both 45-36=9 and 49-45=4 are squares, 45 is in the sequence.

%p filter:= proc(n) local a;

%p if issqr(n) then a:= sqrt(n)-1 else a:= floor(sqrt(n)) fi;

%p issqr(n-a^2) and issqr((a+1)^2-n)

%p end proc:

%p select(filter, [$0..5000]); # _Robert Israel_, Jan 21 2021

%t filter[n_] := If[n == 0, True, Module[{a}, a = If[IntegerQ @ Sqrt[n], Sqrt[n]-1, Floor[Sqrt[n]]]; IntegerQ @ Sqrt[n-a^2] && IntegerQ@Sqrt[(a+1)^2-n]]];

%t Select[Range[0, 5000], filter] (* _Jean-François Alcover_, May 28 2023, after _Robert Israel_ *)

%Y Cf. A000290.

%Y Cf. subsequences: A007204, A234335, A234336.

%Y Cf. A234348.

%K nonn,easy

%O 1,3

%A _Alex Ratushnyak_, Dec 23 2013

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 24 19:59 EDT 2024. Contains 371963 sequences. (Running on oeis4.)