We define a Pythagorean triple as a triple $<a,b,c>$ such that $a,b,c\in \mathbb N$ and $a^2+b^2=c^2$.
In order to avoid duplicates, we say that a triple $<a,b,c>$ is legit iff $b>a$.
Let $\mathcal P$ be the set of all legit Pythagorean triples.
We define $$L_{PT}^N=\{<a,b,c> | <a,b,c> \in \mathcal P\wedge b\leq N\}$$
(If it's more convinient we can define it for $b^2\leq N$, $c\leq N$ or $c^2\leq N$).
What is the density of $|L_{PT}^N|$ as a function of $N$? e.g. is $|L_{PT}^N|=\Theta(N^2)?\Theta(N)?$
We say that a triple $<a,b,c>$ is minimal if $gcd(a,b,c)=1$. Let $\mathcal P_M$ be the set of all legit, minimal triples.
Let $$L_{MPT}^N=\{<a,b,c> | <a,b,c> \in \mathcal P_M\wedge b\leq N\}$$
What is the density of $|L_{MPT}^N|$ as a function of $N$? e.g. is $|L_{MPT}^N|=\Theta(N)?$

If you ask about
NumOfTriplesthat is a number of Pythagorean triples such thatb>aandgcd(a, b,c)=1with cNumOfTriples/n~0.16. This ratio starts at 0 (no triples with c<4), reaches 0.166 at first triple, Fluctuates within several % of it's value and settles around n~100. For the range 40000-100000.Values NumOfTriples/n for_even_C for_odd_C
Average 0.159143303 0.0795567596 0.0795865435
Stdev 0.000074771 4.54997573791607E-005 6.54951966971986E-005
The distribution is surprisingly uniform. Even C are statistically (albeit barely) less common than odd C.