login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A092891 Greatest common divisor of quadruples a,b,c,d such that a < b < c < d, (a*b*c) mod (a+b+c) = d, (a*b*d) mod (a+b+d) = c, (a*c*d) mod (a+c+d) = b, (b*c*d) mod (b+c+d) = a. The quadruples are ordered according to sum of first three components, secondary by first component, thirdly by second component. 4
2, 1, 4, 1, 16, 2, 1, 1, 1, 1, 9, 2, 1, 1, 2, 1, 4, 2, 2, 3, 2, 8, 17, 2, 1, 8, 19, 7, 1, 2, 4, 1, 1, 14, 1, 1, 9, 11, 4, 5, 1, 6, 4, 65, 15, 13, 1, 1, 5, 1, 1, 1, 79, 11, 14, 4, 13, 1, 2, 1, 7, 14, 1, 20, 4, 8, 1, 29, 23, 4, 1, 11, 26, 26, 1, 1, 5, 22, 5, 75, 2, 1, 1, 1, 3, 4, 2, 43, 1, 11, 11, 4, 5 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
First, second, third and fourth component of the quadruples are resp. in A092887, A092888, A092889, A092890.
LINKS
EXAMPLE
The third quadruple is 12, 60, 128, 160, hence a(3) = gcd(4*3,4*3*5,4*32,4*8*5) = 4.
PROG
(PARI) {m=1760; for(n=6, m, for(a=1, (n-3)\3, for(b=a+1, (n-a-1)\2, c=n-a-b; d=a*b*c%(a+b+c); if(c<d, if(a*b*d%(a+b+d) == c, if(a*c*d%(a+c+d) == b, if(b*c*d%(b+c+d) == a, print1(gcd(a, gcd(b, gcd(c, d))), ", "))))))))}
CROSSREFS
Sequence in context: A145762 A024539 A128271 * A229484 A080212 A186727
KEYWORD
nonn
AUTHOR
Klaus Brockhaus, Mar 12 2004
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)