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

 


A015633
Number of ordered triples of integers from [ 2,n ] with no global factor.
1
0, 2, 5, 14, 21, 41, 59, 89, 117, 171, 209, 286, 347, 432, 516, 651, 744, 914, 1042, 1219, 1382, 1634, 1806, 2091, 2323, 2629, 2895, 3300, 3562, 4026, 4386, 4843, 5249, 5802, 6204, 6869, 7380, 8025, 8569, 9388, 9928, 10830, 11516, 12347, 13104
OFFSET
2,2
LINKS
PROG
(Haskell)
a015633 n = length [(x, y, z) | x <- [2..n], y <- [x..n], z <- [y..n],
gcd (gcd x y) z == 1]
-- Reinhard Zumkeller, Nov 28 2011
CROSSREFS
Sequence in context: A118670 A228958 A216669 * A176191 A265248 A131661
KEYWORD
nonn
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 21 04:44 EDT 2024. Contains 376079 sequences. (Running on oeis4.)