login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

COMMENTS

Any number a(n) is also a hypotenuse number A009003 (and conversely) - see Pahikkala 2010 , Theorem 5.

REFERENCES

Pahikkala Jussi, On contraharmonic mean and Pythagorean triples, Elemente der Mathematik, 65:2 (2010), 62-67. [From Pahikkala Jussi (pahio(AT)wakkanet.fi), Sep 05 2010]

LINKS

J. Pahikkala, On contraharmonic mean and Pythagorean triples

PlanetMath, Contraharmonic proportion

PlanetMath, Integer contraharmonic means [From Pahikkala Jussi (pahio(AT)wakkanet.fi), 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; [From N. J. A. Sloane, Mar 20 2011]

PROG

K = 50 (e.g.) FOR u = 2 TO K FOR v = u TO 2u^2-u a := (u^2+v^2)/(u+v) IF INT(a) = a THEN PRINT u, v, a NEXT v NEXT u

CROSSREFS

After sorting and removing duplicates we get A009003. - N. J. A. Sloane, Mar 20 2011.

Sequence in context: A122213 A049735 A055526 * A055524 A132981 A168392

Adjacent sequences:  A146981 A146982 A146983 * A146985 A146986 A146987

KEYWORD

easy,nonn

AUTHOR

Pahikkala Jussi (pahio(AT)wakkanet.fi), Nov 04 2008

EXTENSIONS

Minor edits by N. J. A. Sloane, Mar 20 2011

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 22:30 EST 2012. Contains 205678 sequences.