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!)
A349625 Dirichlet convolution of A000027 (identity function) with the Dirichlet inverse of A326042, where A326042(n) = A064989(sigma(A003961(n))). 3
1, 1, 1, -8, 4, 1, 5, 2, -22, 4, 6, -8, 9, 5, 4, 50, 14, -22, 17, -32, 5, 6, 17, 2, -13, 9, 20, -40, 28, 4, 14, -120, 6, 14, 20, 176, 27, 17, 9, 8, 34, 5, 41, -48, -88, 17, 39, 50, -46, -13, 14, -72, 47, 20, 24, 10, 17, 28, 30, -32, 48, 14, -110, -1126, 36, 6, 63, -112, 17, 20, 40, -44, 70, 27, -13, -136, 30, 9, 69 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Multiplicative because A000027 and A349623 are.
LINKS
FORMULA
a(n) = Sum_{d|n} d * A349623(n/d).
MATHEMATICA
f1[p_, e_] := NextPrime[p]^e; s1[1] = 1; s1[n_] := Times @@ f1 @@@ FactorInteger[n]; f2[2, e_] := 1; f2[p_, e_] := NextPrime[p, -1]^e; s2[1] = 1; s2[n_] := Times @@ f2 @@@ FactorInteger[n]; s[n_] := s2[DivisorSigma[1, s1[n]]]; sinv[1] = 1; sinv[n_] := sinv[n] = -DivisorSum[n, sinv[#] * s[n/#] &, # < n &]; a[n_] := DivisorSum[n, # * sinv[n/#] &]; Array[a, 100] (* Amiram Eldar, Nov 27 2021 *)
PROG
(PARI)
A003961(n) = my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); \\ From A003961
A064989(n) = {my(f); f = factor(n); if((n>1 && f[1, 1]==2), f[1, 2] = 0); for (i=1, #f~, f[i, 1] = precprime(f[i, 1]-1)); factorback(f)};
A326042(n) = A064989(sigma(A003961(n)));
memoA349623 = Map();
A349623(n) = if(1==n, 1, my(v); if(mapisdefined(memoA349623, n, &v), v, v = -sumdiv(n, d, if(d<n, A326042(n/d)*A349623(d), 0)); mapput(memoA349623, n, v); (v)));
A349625(n) = sumdiv(n, d, d*A349623(n/d));
CROSSREFS
Cf. A000203, A003961, A064989, A326042, A349623, A349624 (Dirichlet inverse).
Sequence in context: A202320 A011267 A049469 * A343739 A021547 A154527
KEYWORD
sign,mult
AUTHOR
Antti Karttunen, Nov 26 2021
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 April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)