login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A146984
List of integer-valued contraharmonic means (u^2+v^2)/(u+v) of two positive integers u and v (with u < v) ordered by increasing u and increasing v (u = 2, 3, 4, ...; v = u+1, u+2, ...).
1
5, 5, 13, 10, 25, 17, 41, 10, 15, 26, 61, 37, 85, 20, 50, 113, 15, 39, 65, 145, 13, 25, 34, 82, 181, 101, 221, 17, 20, 30, 52, 75, 122, 265, 145, 313, 29, 35, 74, 170, 365, 25, 29, 51, 65, 123, 197, 421, 40, 100, 226, 481, 257, 545, 30, 45, 53, 78, 130, 183
OFFSET
1,1
COMMENTS
Any number a(n) is also a hypotenuse number A009003 (and conversely) - see Pahikkala 2010, Theorem 5.
LINKS
Jussi Pahikkala, On contraharmonic mean and Pythagorean triples, Elemente der Mathematik, 65:2 (2010), 62-67.
PlanetMath, Integer contraharmonic means [From Pahikkala Jussi, Sep 05 2010]
FORMULA
The contraharmonic mean of u and v is (u^2+v^2)/(u+v).
EXAMPLE
a(1) = (2^2+6^2)/(2+6) = 5, a(2) = (3^2+6^2)/(3+6) = 5, a(3) = (3^2+15^2)/(3+15) = 13.
MAPLE
K:=100; t1:=[];
for u from 1 to K-1 do for v from u+1 to 2*u^2-u do
if (u^2+v^2) mod (u+v) = 0 then t1:=[op(t1), (u^2+v^2)/(u+v)]; fi;
od: od: t1; # N. J. A. Sloane, Mar 20 2011
CROSSREFS
After sorting and removing duplicates we get A009003. - N. J. A. Sloane, Mar 20 2011
Sequence in context: A224067 A049735 A055526 * A055524 A132981 A168392
KEYWORD
easy,nonn
AUTHOR
Pahikkala Jussi, Nov 04 2008
EXTENSIONS
Minor edits by N. J. A. Sloane, Mar 20 2011
STATUS
approved