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!)
A372866 a(n) is the sum, over all positive integers x, y such that x*y <= n, of phi(gcd(x,y)). 2

%I #34 Jul 07 2024 18:16:02

%S 1,3,5,8,10,14,16,20,24,28,30,36,38,42,46,52,54,62,64,70,74,78,80,88,

%T 94,98,104,110,112,120,122,130,134,138,142,154,156,160,164,172,174,

%U 182,184,190,198,202,204,216,224,236,240,246,248,260,264,272,276,280

%N a(n) is the sum, over all positive integers x, y such that x*y <= n, of phi(gcd(x,y)).

%C A number-theoretic sum involving the Euler phi function and gcd's.

%C Theorem 1.1 of Kiuchi and Tsuruta (2024) gives an estimate for a(n).

%H Alois P. Heinz, <a href="/A372866/b372866.txt">Table of n, a(n) for n = 1..10000</a>

%H I. Kiuchi and Y. Tsuruta, <a href="https://doi.org/10.1017/S0004972723000825">On sums involving the Euler totient function</a>, Bull. Aust. Math. Soc. 109 (2024), 486-497.

%e For n = 3, the (a,b) pairs that appear in the sum are (1,1), (1,2), (1,3), (2,1), (3,1); the gcd of all is 1, and the sum of the phi-function at these 5 values of 1 is 5.

%p a:= proc(n) option remember; uses numtheory; `if`(n<1, 0,

%p a(n-1)+add(phi(igcd(d, n/d)), d=divisors(n)))

%p end:

%p seq(a(n), n=1..58); # _Alois P. Heinz_, Jul 04 2024

%t a[n_] := a[n] = DivisorSum[n, EulerPhi[GCD[#, n/#]] &] + a[n - 1]; a[1] = 1; Array[a, 120] (* _Michael De Vlieger_, Jul 04 2024 *)

%o (Python)

%o from math import gcd

%o from functools import cache

%o from sympy import divisors, totient as phi

%o @cache

%o def a(n):

%o if n == 1: return 1

%o return a(n-1) + sum(phi(gcd(a, (b:=n//a))) for a in divisors(n))

%o print([a(n) for n in range(1, 61)]) # _Michael S. Branicky_, Jul 04 2024

%o (Python)

%o from math import prod

%o from itertools import count, islice

%o from sympy import factorint

%o def A372866_gen(): # generator of terms

%o c = 0

%o for n in count(1):

%o c += prod(p**(e>>1)+p**(e-1>>1) for p, e in factorint(n).items())

%o yield c

%o A372866_list = list(islice(A372866_gen(),20)) # _Chai Wah Wu_, Jul 05 2024

%o (PARI) a(n) = sum(k=1, n, sumdiv(k, d, eulerphi(gcd(d, k/d)))); \\ _Michel Marcus_, Jul 04 2024

%Y Partial sums of A001616.

%Y Cf. A000010.

%K nonn

%O 1,2

%A _Jeffrey Shallit_, Jul 04 2024

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 September 14 06:54 EDT 2024. Contains 375920 sequences. (Running on oeis4.)