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!)
A257408 Values of n such that there is exactly 1 solution to x^2 - y^2 = n with x > y >= 0. 11

%I #11 Apr 22 2015 11:13:18

%S 1,3,4,5,7,8,11,12,13,17,19,20,23,28,29,31,37,41,43,44,47,52,53,59,61,

%T 67,68,71,73,76,79,83,89,92,97,101,103,107,109,113,116,124,127,131,

%U 137,139,148,149,151,157,163,164,167,172,173,179,181,188,191,193

%N Values of n such that there is exactly 1 solution to x^2 - y^2 = n with x > y >= 0.

%C The terms a(1)=1 and a(3)=4 are the only squares in this sequence. - _M. F. Hasler_, Apr 22 2015

%H Colin Barker, <a href="/A257408/b257408.txt">Table of n, a(n) for n = 1..1500</a>

%e 13 is in the sequence because there is only 1 solution to x^2 - y^2 = 13, namely (x,y) = (7,6).

%t r[n_] := Reduce[x^2 - y^2 == n && x > y >= 0, {x, y}, Integers]; Reap[For[n = 1, n < 200, n++, If[r[n][[0]] === And, Print[n]; Sow[n]]]][[2, 1]] (* _Jean-François Alcover_, Apr 22 2015 *)

%o (PARI) is(n)=A034178(n)==1 \\ _M. F. Hasler_, Apr 22 2015

%Y Cf. A257409-A257417.

%Y Cf. A034178.

%K nonn

%O 1,2

%A _Colin Barker_, Apr 22 2015

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 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)