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!)
A260842 Sum of lcm(gcd(i,j), gcd(k,l)) for i,j,k,l in range [1..n]. 1

%I #28 Mar 02 2019 04:21:08

%S 1,23,136,516,1289,3271,5908,11084,18833,31503,44072,71156,93681,

%T 133095,190052,256468,311909,421619,501412,664112,847013,1035763,

%U 1186208,1515000,1790625,2114575,2502268,3028600,3354613,4109163,4517824,5246624,6070201,6853807,7933304

%N Sum of lcm(gcd(i,j), gcd(k,l)) for i,j,k,l in range [1..n].

%H Giovanni Resta, <a href="/A260842/b260842.txt">Table of n, a(n) for n = 1..10000</a> (first 161 terms from Robert G. Wilson v)

%H Ren LuYao (FancyCoder), <a href="http://acm.hdu.edu.cn/showproblem.php?pid=5341">Round #49</a>, BestCoder.

%p N:= 100: # to get a(1) to a(N)

%p M:= Matrix(N,N,igcd,shape=symmetric):

%p T:= Vector(N):

%p for n from 1 to N do

%p T[M[n,n]]:= T[M[n,n]]+1;

%p for j from 1 to n-1 do

%p T[M[n,j]]:= T[M[n,j]]+2;

%p od:

%p A[n]:= 2*add(add(ilcm(i,j)*T[i]*T[j],i=1..j-1),j=2..n) + add(i*T[i]^2,i=1..n);

%p od:

%p seq(A[n],n=1..N); # _Robert Israel_, Aug 04 2015

%t f[n_] := Sum[ LCM[ GCD[i, j], GCD[k, l]], {i, n}, {j, n}, {k, n}, {l, n}]; Array[f, 35] (* _Robert G. Wilson v_, Aug 02 2015 *)

%o (PARI) a(n) = {s = 0; for (i=1, n, for (j=1, n, for (k=1, n, for (l=1, n, s += lcm(gcd(i,j),gcd(k,l)););););); s;} \\ _Michel Marcus_, Aug 01 2015

%K nonn

%O 1,2

%A _Sirius Caffrey_, Aug 01 2015

%E More terms from _Michel Marcus_, Aug 01 2015

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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)