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!)
A327251 Expansion of Sum_{k>=1} psi(k) * x^k / (1 - x^k)^2, where psi = A001615. 6
1, 5, 7, 16, 11, 35, 15, 44, 33, 55, 23, 112, 27, 75, 77, 112, 35, 165, 39, 176, 105, 115, 47, 308, 85, 135, 135, 240, 59, 385, 63, 272, 161, 175, 165, 528, 75, 195, 189, 484, 83, 525, 87, 368, 363, 235, 95, 784, 161, 425, 245, 432, 107, 675, 253, 660, 273 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Inverse Moebius transform of A322577.
Dirichlet convolution of A001615 with A000027.
LINKS
FORMULA
a(n) = Sum_{d|n} psi(n/d) * d.
a(p) = 2*p + 1, where p is prime.
Multiplicative with a(p^e) = p^(e-1)*((p+1)*e + p). - Antti Karttunen, Aug 24 2021
MATHEMATICA
nmax = 57; CoefficientList[Series[Sum[DirichletConvolve[j, MoebiusMu[j]^2, j, k] x^k/(1 - x^k)^2, {k, 1, nmax}], {x, 0, nmax}], x] // Rest
f[p_, e_] := p^(e - 1)*((p + 1)*e + p); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Aug 24 2021 *)
PROG
(PARI) mypsi(n) = n * sumdivmult(n, d, issquarefree(d)/d); \\ A001615
a(n) = sumdiv(n, d, mypsi(n/d)*d); \\ Michel Marcus, Sep 15 2019
CROSSREFS
Sequence in context: A082878 A106506 A029649 * A314367 A314368 A314369
KEYWORD
nonn,mult
AUTHOR
Ilya Gutkovskiy, Sep 15 2019
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 10 20:32 EDT 2024. Contains 372388 sequences. (Running on oeis4.)