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!)
A092887 First component 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
10, 13, 12, 56, 48, 40, 49, 23, 29, 47, 45, 46, 70, 69, 70, 79, 40, 34, 92, 117, 56, 128, 102, 176, 38, 160, 19, 98, 125, 16, 20, 79, 110, 56, 130, 70, 90, 77, 124, 15, 65, 90, 124, 195, 270, 65, 205, 23, 35, 209, 78, 58, 237, 33, 70, 304, 91, 286, 176, 274, 238, 238, 28 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Suggested by Thomas A. Nagy. - A092888 gives second component, A092889 gives third component, A092890 gives fourth component.
Problem: Which numbers will never appear as one of the components of those quadruples?
LINKS
EXAMPLE
The sixth quadruple is 40, 70, 142, 196, hence a(6) = 40.
PROG
(PARI) {m=1320; 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(a, ", "))))))))}
CROSSREFS
Sequence in context: A332478 A144814 A241174 * A131365 A241144 A102362
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)