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!)
A185953 Number of pairwise coprime triples of positive integers with largest element n (i.e., A015617(n) - A015617(n-1)). 6
0, 0, 1, 1, 5, 1, 11, 6, 12, 5, 31, 6, 45, 14, 21, 24, 79, 15, 101, 27, 49, 37, 149, 28, 126, 56, 109, 57, 241, 28, 277, 106, 137, 100, 183, 62, 395, 128, 193, 102, 489, 65, 541, 165, 203, 189, 649, 116, 551, 170, 347, 231, 829, 147, 506, 234, 434, 307, 1027, 119, 1101, 364, 450, 412, 727 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
REFERENCES
Robert Israel, Posting to Sequence Fans Mailing List, Feb 06, 2011
LINKS
MATHEMATICA
a[n_] := Sum[Boole[GCD[a, n] == 1 && GCD[b, n] == 1 && GCD[a, b] == 1], {a, 1, n-2}, {b, a+1, n-1}]; Array[a, 100] (* Jean-François Alcover, Mar 05 2019, from PARI *)
PROG
(PARI) a(n)=sum(a=1, n-2, sum(b=a+1, n-1, gcd(a, n)==1&&gcd(b, n)==1&&gcd(a, b)==1)) \\ Charles R Greathouse IV, Apr 28 2015
CROSSREFS
Cf. A015617. Row sums of triangle A186230. Column 3 of triangle A186972.
Sequence in context: A067292 A131782 A242060 * A323359 A324036 A075677
KEYWORD
nonn,look
AUTHOR
N. J. A. Sloane, Feb 07 2011
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 May 2 19:04 EDT 2024. Contains 372203 sequences. (Running on oeis4.)