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”).

A092819
Third component of triples a,b,c such that a < b < c, (a*b) mod (a+b) = c, (b*c) mod (b+c) = a, (c*a) mod (c+a) = b. The triples are ordered according to sum of first and second component.
4
11, 111, 153, 575, 475, 735, 776, 713, 1025, 864, 1056, 1311, 1020, 1183, 1159, 1411, 1595, 1716, 1575, 1769, 1463, 1147, 1819, 1683, 1665, 2231, 2261, 1919, 2009, 2300, 2369, 2072, 2479, 2368, 2415, 2407, 2093, 2640, 3161, 2560, 3051, 2240, 3103, 3179
OFFSET
1,1
COMMENTS
A092817 gives first component, A092818 gives second component.
EXAMPLE
The fourth triple is 125, 475, 575, hence a(4) = 575.
PROG
(PARI) {m=4000; for(n=3, m, for(a=1, (n-1)\2, b=n-a; c=a*b%(a+b); if(b<c, if((b*c)%(b+c)==a, if((a*c)%(a+c)==b, print1(c, ", ")))))); }
CROSSREFS
KEYWORD
nonn
AUTHOR
Klaus Brockhaus, Mar 06 2004
STATUS
approved