cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A055155 a(n) = Sum_{d|n} gcd(d, n/d).

Original entry on oeis.org

1, 2, 2, 4, 2, 4, 2, 6, 5, 4, 2, 8, 2, 4, 4, 10, 2, 10, 2, 8, 4, 4, 2, 12, 7, 4, 8, 8, 2, 8, 2, 14, 4, 4, 4, 20, 2, 4, 4, 12, 2, 8, 2, 8, 10, 4, 2, 20, 9, 14, 4, 8, 2, 16, 4, 12, 4, 4, 2, 16, 2, 4, 10, 22, 4, 8, 2, 8, 4, 8, 2, 30, 2, 4, 14, 8, 4, 8, 2, 20, 17, 4, 2, 16, 4, 4, 4, 12, 2, 20, 4, 8, 4, 4
Offset: 1

Views

Author

Leroy Quet, Jul 02 2000

Keywords

Comments

a(n) is odd iff n is odd square. - Vladeta Jovovic, Aug 27 2002
From Robert Israel, Dec 26 2015: (Start)
a(n) >= A000005(n), with equality iff n is squarefree (i.e., is in A005117).
a(n) = 2 iff n is prime. (End)

Examples

			a(9) = gcd(1,9) + gcd(3,3) + gcd(9,1) = 5, since 1, 3, 9 are the positive divisors of 9.
		

Crossrefs

Programs

  • Maple
    N:= 1000: # to get a(1) to a(N)
    V:= Vector(N):
    for k from 1 to N do
       for j from 1 to floor(N/k) do
         V[k*j]:= V[k*j]+igcd(k,j)
       od
    od:
    convert(V,list); # Robert Israel, Dec 26 2015
  • Mathematica
    Table[DivisorSum[n, GCD[#, n/#] &], {n, 94}] (* Michael De Vlieger, Sep 23 2017 *)
    f[p_, e_] := If[EvenQ[e], (p^(e/2)*(p+1)-2)/(p-1), 2*(p^((e+1)/2)-1)/(p-1)]; a[1] = 1; a[n_] := Times @@ (f @@@ FactorInteger[n]); Array[a, 100] (* Amiram Eldar, Sep 30 2020 *)
  • PARI
    a(n) = sumdiv(n, d, gcd(d, n/d)); \\ Michel Marcus, Aug 03 2016
    
  • Python
    from sympy import divisors, gcd
    def A055155(n): return sum(gcd(d,n//d) for d in divisors(n,generator=True)) # Chai Wah Wu, Aug 19 2021

Formula

Multiplicative with a(p^e) = (p^(e/2)*(p+1)-2)/(p-1) for even e and a(p^e) = 2*(p^((e+1)/2)-1)/(p-1) for odd e. - Vladeta Jovovic, Nov 01 2001
Dirichlet g.f.: (zeta(s))^2*zeta(2s-1)/zeta(2s); inverse Mobius transform of A000188. - R. J. Mathar, Feb 16 2011
Dirichlet convolution of A069290 and A008966. - R. J. Mathar, Oct 31 2011
Sum_{k=1..n} a(k) ~ 3*n / (2*Pi^6) * (Pi^4 * log(n)^2 + ((8*g - 2)*Pi^4 - 24 * Pi^2 * z1) * log(n) + 2*Pi^4 * (1 - 4*g + 5*g^2 - 6*sg1) + 288 * z1^2 - 24 * Pi^2 * (-z1 + 4*g*z1 + z2)), where g is the Euler-Mascheroni constant A001620, sg1 is the first Stieltjes constant A082633, z1 = Zeta'(2) = A073002, z2 = Zeta''(2) = A201994. - Vaclav Kotesovec, Feb 01 2019
a(n) = (1/n)*Sum_{i=1..n} sigma(gcd(n,i^2)). - Ridouane Oudra, Dec 30 2020
a(n) = Sum_{k=1..n} gcd(gcd(n,k),n/gcd(n,k))/phi(n/gcd(n,k)), where phi = A000010. - Richard L. Ollerton, May 09 2021