OFFSET
1,1
COMMENTS
This value (h+k)k gives one side of a triangle defined by sides (k^2, (h+k)k, (h+k)^2-k^k) which happens to have the property that the angle opposite the (h+k)k side is twice the measure of the angle opposite the k^2 side. These numbers would be the duplicates in the term-by-term multiplication: A106501 * A106500.
LINKS
N. M. Makin, Table of n, a(n) for n = 1..5490.
EXAMPLE
a(n) <- (h1,k1),(h2,k2)
420 <- (13,15),(1,20)
840 <- (19,21),(11,24)
858 <- (17,22),(7,26)
2160 <- (17,28),(1,35)
2520 <- (23,40),(11,45)
MATHEMATICA
F[n_]:= Union[Flatten[Join[Table[p/q, {q, n}, {p, q - 1}]]]];
S[n_]:=(Denominator[n]+Numerator[n])Denominator[n];
FindDups[l_]:= Module[{sl, rs}, sl=Sort[l]; rs={}; Map[If[Count[sl, # ]>1, rs=Append[rs, # ]]&, l]; Union[rs]];
FindDups[S[F[71]]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Nicholas M. Makin (nmaximillian(AT)yahoo.com), Nov 12 2008
STATUS
approved