A308341 Hypotenuses of primitive Pythagorean triangles two sides of which are Pythagorean primes.
13, 421, 1861, 5101, 16381, 60901, 83641, 100801, 106261, 135721, 161881, 205441, 218461, 337021, 388081, 431521, 571381, 637321, 697381, 926161, 1108561, 1460341, 1515541, 1806901, 1899301, 2334961, 2574181, 2601481, 2740141, 2834581, 2853661, 3248701, 3403441, 3723721, 3889261, 4503001
Offset: 1
Keywords
Examples
13 is a term because 13 and 5 are Pythagorean primes and are sides of {5,12,13}. 421 is a term because 421 and 29 are Pythagorean primes and are sides of {29,420,421}. 1861 is a term because 1861 and 61 are Pythagorean primes and are sides of {61,1860,1861}. 5101 is a term because 5101 and 101 are Pythagorean primes and are sides of {101,5100,5101}.
Links
- Wikipedia, Pythagorean triple
Programs
-
PARI
hyp(n) = {return((2*((n-1)/2)^2) + (2*((n-1)/2)) + 1);} lista(n) = forprime(p=2, n, if((p%4 == 1) && isprime(p) && isprime(hyp(p)), print1(hyp(p), ", "))); lista(3100)
Comments