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!)
A347090 Dirichlet inverse of A332844. 3
1, -3, -4, 1, -6, 12, -8, 3, 2, 18, -12, -4, -14, 24, 24, -2, -18, -6, -20, -6, 32, 36, -24, -12, 4, 42, 4, -8, -30, -72, -32, 0, 48, 54, 48, 2, -38, 60, 56, -18, -42, -96, -44, -12, -12, 72, -48, 8, 6, -12, 72, -14, -54, -12, 72, -24, 80, 90, -60, 24, -62, 96, -16, 0, 84, -144, -68, -18, 96, -144, -72, 6, -74, 114 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Multiplicative because A332844 is.
LINKS
FORMULA
a(1) = 1; a(n) = -Sum_{d|n, d<n} A332844(n/d) * a(d).
a(n) = A347091(n) - A332844(n).
PROG
(PARI)
up_to = 16384;
DirInverseCorrect(v) = { my(u=vector(#v)); u[1] = (1/v[1]); for(n=2, #v, u[n] = (-u[1]*sumdiv(n, d, if(d<n, v[n/d]*u[d], 0)))); (u) }; \\ Compute the Dirichlet inverse of the sequence given in input vector v.
A332844(n) = sumdiv(n, d, issquare(n/d) * sigma(d));
v347090 = DirInverseCorrect(vector(up_to, n, A332844(n)));
A347090(n) = v347090[n];
CROSSREFS
Sequence in context: A348047 A348984 A323159 * A328181 A358346 A348733
KEYWORD
sign,mult,look
AUTHOR
Antti Karttunen, Aug 18 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 August 13 14:39 EDT 2024. Contains 375142 sequences. (Running on oeis4.)