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!)
A024359 Number of primitive Pythagorean triangles with short leg n. 8

%I #29 Feb 03 2020 11:45:40

%S 0,0,1,0,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,2,1,0,1,1,1,0,1,2,1,0,1,1,2,0,

%T 1,2,1,0,2,1,1,0,1,2,1,0,1,2,1,0,2,2,1,0,1,1,2,0,1,3,1,0,1,1,2,0,1,2,

%U 2,0,1,1,1,0,2,2,1,0,1,1,1,0,1,3,2,0,2

%N Number of primitive Pythagorean triangles with short leg n.

%C Consider primitive Pythagorean triangles (A^2 + B^2 = C^2, (A, B) = 1, A <= B); sequence gives number of times A takes value n.

%C Number of times n occurs in A020884.

%C a(A139544(n)) = 0; a(A024352(n)) > 0. - _Reinhard Zumkeller_, Nov 09 2012

%H T. D. Noe, <a href="/A024359/b024359.txt">Table of n, a(n) for n = 1..10000</a>

%H Ron Knott, <a href="http://www.maths.surrey.ac.uk/hosted-sites/R.Knott/Pythag/pythag.html">Pythagorean Triples and Online Calculators</a>

%F a(n) = A024361(n) - A024360(n). - _Ray Chandler_, Feb 03 2020

%t solns[a_] := Module[{b, c, soln}, soln = Reduce[a^2 + b^2 == c^2 && a < b && c > 0 && GCD[a, b, c] == 1, {b, c}, Integers]; If[soln === False, 0, If[soln[[1, 1]] === b, 1, Length[soln]]]]; Table[solns[n], {n, 100}]

%t (* Second program: *)

%t a[n_] := Module[{s = 0, b, c, d, g}, Do[g = Quotient[n^2, d]; If[d <= g && Mod[d+g, 2] == 0, c = Quotient[d+g, 2]; b = g-c; If[n < b && GCD[b, c] == 1, s++]], {d, Divisors[n^2]}]; s]; Array[a, 100] (* _Jean-François Alcover_, Apr 27 2019, from PARI *)

%o (Haskell)

%o a024359_list = f 0 1 a020884_list where

%o f c u vs'@(v:vs) | u == v = f (c + 1) u vs

%o | u /= v = c : f 0 (u + 1) vs'

%o -- _Reinhard Zumkeller_, Nov 09 2012

%o (PARI)

%o nppt(a) = {

%o my(s=0, b, c, d, g);

%o fordiv(a^2, d,

%o g=a^2\d;

%o if(d<=g && (d+g)%2==0,

%o c=(d+g)\2; b=g-c;

%o if(a<b && gcd(b, c)==1, s++)

%o )

%o );

%o s

%o }

%o vector(100, n, nppt(n)) \\ _Colin Barker_, Oct 25 2015

%Y Cf. A020884, A024352, A024360, A024361, A132404 (where records occur), A139544.

%K nonn

%O 1,20

%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 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)