A259288 Odd numbers of the form (m*k)^2/(m^2-k^2) for distinct integers m and k.
147, 225, 405, 1323, 2025, 3645, 3675, 4225, 5625, 7203, 7623, 10125, 11025, 11907, 14415, 17457, 17787, 18225, 18513, 19845, 24375, 24843, 27225, 30625, 32805, 33075, 38025, 42483, 49005, 50625, 53067, 61347, 64827, 65025, 68445, 68607, 77763, 81225, 91125, 91875, 98397, 99225, 105625, 107163, 117045, 119025
Offset: 1
Keywords
Examples
(84*12)^2/(84^2-12^2) = 84^2/48 = 147. So 147 is a member of this sequence. (Note that k=12 and m=84 and so m=7*k.)
Programs
-
PARI
v=[]; for(m=1, 7500, for(n=1, m-1, if(type(s=(m*n)^2/(m^2-n^2))=="t_INT"&&(s%2), v=concat(v, s)))); vecsort(v, , 8)
Comments