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!)
A347238 Dirichlet inverse of A347236. 4
1, -1, -2, -6, -2, 2, -4, 0, -15, 2, -2, 12, -4, 4, 4, 0, -2, 15, -4, 12, 8, 2, -6, 0, -35, 4, 0, 24, -2, -4, -6, 0, 4, 2, 8, 90, -4, 4, 8, 0, -2, -8, -4, 12, 30, 6, -6, 0, -77, 35, 4, 24, -6, 0, 4, 0, 8, 2, -2, -24, -6, 6, 60, 0, 8, -4, -4, 12, 12, -8, -2, 0, -6, 4, 70, 24, 8, -8, -4, 0, 0, 2, -6, -48, 4, 4, 4, 0, -8 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Multiplicative because A347236 is.
It seems that A046099 gives the positions of zeros.
This follows from the formula for a(p^e). - Sebastian Karlsson, Sep 01 2021
LINKS
FORMULA
a(1) = 1; a(n) = -Sum_{d|n, d < n} A347236(n/d) * a(d).
a(n) = A347239(n) - A347236(n).
For all n >= 1, a(A000040(n)) = -A001223(n).
Multiplicative with a(p^e) = p - A151800(p) if e = 1, -p*A151800(p) if e = 2 and 0 if e > 2. - Sebastian Karlsson, Sep 01 2021
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.
A003961(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); };
A061019(n) = (((-1)^bigomega(n))*n);
A347236(n) = sumdiv(n, d, A061019(d)*A003961(n/d));
v347238 = DirInverseCorrect(vector(up_to, n, A347236(n)));
A347238(n) = v347238[n];
CROSSREFS
Cf. A151800.
Sequence in context: A289382 A062539 A064136 * A171898 A330541 A320575
KEYWORD
sign,mult
AUTHOR
Antti Karttunen, Aug 24 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 27 11:50 EDT 2024. Contains 375468 sequences. (Running on oeis4.)