|
| |
|
|
A103253
|
|
Numbers y, without duplication, in pythagorean triples x,y,z where x,y,z are relatively prime composite numbers and z is a perfect square.
|
|
0
| |
|
|
7, 28, 41, 63, 112, 119, 161, 164, 175, 239, 252, 343, 369, 448, 476, 527, 567, 644, 656, 700, 721, 847, 956, 959, 1008, 1025, 1071, 1081, 1183, 1241, 1372, 1449, 1476, 1519, 1575, 1792, 1904, 2009, 2023, 2047, 2108, 2268, 2527, 2576, 2624, 2800, 2884, 2975
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| The case where x or y and z are squares does not occur.
|
|
|
LINKS
| MathForFun, Title?
|
|
|
EXAMPLE
| x=24,y=7, 24^2 + 7^2 = 25^2. 7 is the 1-st entry in the list.
|
|
|
PROG
| (PARI) pythtrisq(n) = { local(a, b, c=0, k, x, y, z, vy, wx, vx, vz, j); w = vector(n*n+1); for(a=1, n, for(b=1, n, x=2*a*b; y=b^2-a^2; z=b^2+a^2; if(y > 0 & issquare(z), c++; w[c]=y; print(x", "y", "z) ) ) ); vy=vector(c); w=vecsort(w); for(j=1, n*n, if(w[j]>0, k++; vy[k]=w[j]; ) ); for(j=1, 200, print1(vy[j]", ") ) }
|
|
|
CROSSREFS
| Sequence in context: A184331 A155712 A015817 * A139607 A068206 A118120
Adjacent sequences: A103250 A103251 A103252 * A103254 A103255 A103256
|
|
|
KEYWORD
| easy,nonn
|
|
|
AUTHOR
| Cino Hilliard (hillcino368(AT)gmail.com), Mar 20 2005
|
| |
|
|