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!)
A260073 Number of triples {x, y, x mod y} of three distinct divisors of n. 5
0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3, 0, 1, 0, 0, 0, 3, 0, 3, 1, 1, 0, 6, 0, 1, 0, 2, 0, 8, 0, 0, 0, 1, 0, 9, 0, 1, 1, 5, 0, 9, 0, 2, 0, 1, 0, 10, 0, 3, 0, 3, 0, 6, 1, 4, 1, 1, 0, 23, 0, 1, 2, 0, 0, 7, 0, 3, 0, 6, 0, 18, 0, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,12
COMMENTS
a(n) = 0 if n is a prime power. - Charles R Greathouse IV, Aug 20 2015
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
a(6) = 1 because x = 3, y = 2, x mod y = 1 and 3, 2, 1 are distinct divisors of 6.
PROG
(PARI) a(n)=my(d=divisors(n), x, y, z); sum(i=2, #d-2, y=d[i]; sum(j=i+1, #d-1, x=d[j]; z=x%y; z && n%z==0)) \\ Charles R Greathouse IV, Aug 20 2015
CROSSREFS
Cf. A027750.
Sequence in context: A111025 A271620 A098018 * A196306 A107093 A051830
KEYWORD
nonn
AUTHOR
EXTENSIONS
Corrected and edited by Charles R Greathouse IV, Aug 20 2015
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 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)