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!)
A006991 Primitive congruent numbers.
(Formerly M3748)
26

%I M3748 #94 Jul 05 2023 04:35:11

%S 5,6,7,13,14,15,21,22,23,29,30,31,34,37,38,39,41,46,47,53,55,61,62,65,

%T 69,70,71,77,78,79,85,86,87,93,94,95,101,102,103,109,110,111,118,119,

%U 127,133,134,137,138,141,142,143,145,149,151,154,157,158,159

%N Primitive congruent numbers.

%C Squarefree terms of A003273.

%C Assuming the Birch and Swinnerton-Dyer conjecture, determining whether a number n is congruent requires counting the solutions to a pair of equations. For odd n, see A072068 and A072069; for even n see A072070 and A072071. The Mathematica program for this sequence uses variables defined in A072068, A072069, A072070, A072071. - _T. D. Noe_, Jun 13 2002

%D R. K. Guy, Unsolved Problems in Number Theory, D27.

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H T. D. Noe, <a href="/A006991/b006991.txt">Primitive congruent numbers up to 10000; table of n, a(n) for n = 1..3503</a>

%H R. Alter and T. B. Curtz, <a href="http://www.jstor.org/stable/2005838">A note on congruent numbers</a>, Math. Comp., 28 (1974), 303-305 and 30 (1976), 198.

%H American Institute of Mathematics, <a href="http://www.aimath.org/news/congruentnumbers/">A trillion triangles</a>

%H B. Cipra, <a href="http://sciencenow.sciencemag.org/cgi/content/full/2009/923/3?etoc">Tallying the class of congruent numbers</a>, ScienceNOW, Sep 23 2009.

%H Clay Mathematics Institute, <a href="http://www.claymath.org/prizeproblems/birchsd.htm">The Birch and Swinnerton-Dyer Conjecture</a>

%H Keith Conrad, <a href="http://www.math.uconn.edu/~kconrad/articles/congruentnumber.pdf">The Congruent Number Problem</a>, The Harvard College Mathematics Review, 2008.

%H Department of Pure Maths., Univ. Sheffield, <a href="https://web.archive.org/web/20040206183520/http://www.shef.ac.uk/~puremath/theorems/congruent.html">Pythagorean triples and the congruent number problem</a>

%H A. Dujella, A. S. Janfeda, and S. Salami, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL12/Janfada/janfada3.html">A Search for High Rank Congruent Number Elliptic Curves</a>, JIS 12 (2009) 09.5.8.

%H Hisanori Mishima, <a href="http://www.asahi-net.or.jp/~KC2H-MSM/mathland/math10/matb2000.htm">361 Congruent Numbers g: 1<=g<=999</a>

%H Giovanni Resta, <a href="http://www.numbersaplenty.com/set/congruent_number/">Congruent numbers</a> Primitive congruent numbers up to 10^7.

%H Karl Rubin, <a href="http://math.Stanford.EDU/~rubin/lectures/sumo/">Elliptic curves and right triangles</a>

%H J. B. Tunnell, <a href="http://dx.doi.org/10.1007/BF01389327">A classical Diophantine problem and modular forms of weight 3/2</a>, Invent. Math., 72 (1983), 323-334.

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Congruent_number">Congruent number</a>

%H R. G. Wilson v, <a href="/A006991/a006991.pdf">Letter to N. J. A. Sloane, Oct. 1993</a>

%e 6 is congruent because 6 is the area of the right triangle with sides 3,4,5. It is a primitive congruent number because it is squarefree.

%t (* The following Mathematica code assumes the truth of the Birch and Swinnerton-Dyer conjecture and uses functions from A072068. *)

%t For[lst={}; n=1, n<=maxN, n++, If[SquareFreeQ[n], If[(EvenQ[n]&&soln3[[n/2]]==2soln4[[n/2]])|| (OddQ[n]&&soln1[[(n+1)/2]]==2soln2[[(n+1)/2]]), AppendTo[lst, n]]]]; lst

%t (* The following self-contained Mathematica code also assumes the truth of the Birch and Swinnerton-Dyer conjecture. *)

%t CongruentQ[n_] := Module[{x, y, z, ok=False}, (Which[! SquareFreeQ[n], Null[], MemberQ[{5, 6, 7}, Mod[n, 8]], ok = True, OddQ@n&&Length@Solve[x^2+2y^2+8z^2==n, {x, y, z}, Integers]==2Length@Solve[x^2+2y^2+32z^2==n, {x, y, z}, Integers], ok=True, EvenQ@n&&Length@Solve[x^2+4y^2+8z^2==n/2, {x, y, z}, Integers]==2Length@ Solve[x^2 + 4 y^2 + 32 z^2 == n/2, {x, y, z}, Integers], ok=True]; ok)]; Select[Range[200], CongruentQ] (* _Frank M Jackson_, Jun 06 2016 *)

%Y Cf. A003273, A072068, A072069, A072070, A072071.

%K nonn

%O 1,1

%A _N. J. A. Sloane_, _Robert G. Wilson v_

%E More terms from _T. D. Noe_, Feb 26 2003

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