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!)
A015632 Number of ordered triples of integers from [ 1,n ] with no common factors between pairs. 1
1, 2, 4, 6, 12, 14, 26, 33, 46, 52, 84, 91, 137, 152, 174, 199, 279, 295, 397, 425, 475, 513, 663, 692, 819, 876, 986, 1044, 1286, 1315, 1593, 1700, 1838, 1939, 2123, 2186, 2582, 2711, 2905, 3008, 3498, 3564, 4106, 4272, 4476, 4666, 5316, 5433, 5985 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) ~ k * n^3 where k is 1/6 * A065473 = 0.04779.... [Charles R Greathouse IV, Nov 14 2011]
PROG
(Haskell)
a015632 n = length [(x, y, z) | z <- [1..n], y <- [1..z], gcd y z == 1,
x <- [1..y], gcd x z == 1, gcd x y == 1]
-- Reinhard Zumkeller, Nov 14 2011
CROSSREFS
Sequence in context: A161337 A050055 A293602 * A111084 A015636 A015663
KEYWORD
nonn
AUTHOR
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 July 21 18:17 EDT 2024. Contains 374475 sequences. (Running on oeis4.)