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!)
A049263 Smallest nonnegative value taken on by n*x^2 - 4*y^2 for an infinite number of integer pairs (x, y). 0

%I #8 Oct 11 2016 20:08:11

%S 0,2,3,0,1,2,3,4,0,4,7,8,1,10,11,0,1,2,3,4,5,2,7,8,0,4,8,12,1,14,3,16,

%T 17,18,19,0,1,2,3,4,1,6,3,8,5,10,11,12,0,4,8,4,1,2,11,20,12,4,8,24,1,

%U 26,27,0,1,2,3,4,5,6,7,8,1,4,11,8,13,14,15,16,0,4,8,12,1,2,23,8,1,26,3

%N Smallest nonnegative value taken on by n*x^2 - 4*y^2 for an infinite number of integer pairs (x, y).

%t p = 4; f[n_, z_] := FindInstance[x > 0 && y > 0 && n*x^2 - p*y^2 == z, {x, y}, Integers, 1]; a[n_] := For[z = 0, True, z = z + GCD[n, p], fz = TimeConstrained[f[n, z], 300]; fz = If[fz === $Aborted, {{x -> Null, y -> Null}}, fz]; If[fz =!= {}, Print["a(", n, ") = ", z, " {x, y} = ", {x, y} /. fz[[1]]]; Return[z]]]; Table[a[n], {n, 1, 91}] (* _Jean-François Alcover_, Oct 11 2016 *)

%K nonn

%O 1,2

%A _David W. Wilson_

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 13:12 EDT 2024. Contains 371969 sequences. (Running on oeis4.)