The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A347228 Dirichlet inverse of A344695, gcd(sigma(n), psi(n)). 3
1, -3, -4, 8, -6, 12, -8, -24, 15, 18, -12, -32, -14, 24, 24, 72, -18, -45, -20, -48, 32, 36, -24, 96, 35, 42, -60, -64, -30, -72, -32, -216, 48, 54, 48, 120, -38, 60, 56, 144, -42, -96, -44, -96, -90, 72, -48, -288, 63, -105, 72, -112, -54, 180, 72, 192, 80, 90, -60, 192, -62, 96, -120, 648, 84, -144, -68, -144, 96 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This is not multiplicative because A344695 is not multiplicative. The first point where a(m*n) = a(m)*a(n) does not hold for coprime m and n is 108 = 4*27, where a(108) = -484 <> -480 = 8 * -60 = a(4) * a(27).
Conjecture: No zeros occur as terms. Checked up to n = 2^21.
LINKS
FORMULA
a(1) = 1; a(n) = -Sum_{d|n, d < n} A344695(n/d) * a(d).
a(n) = A347229(n) - A344695(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.
A001615(n) = if(1==n, n, my(f=factor(n)); prod(i=1, #f~, f[i, 1]^f[i, 2] + f[i, 1]^(f[i, 2]-1))); \\ After code in A001615
A344695(n) = gcd(sigma(n), A001615(n));
v347228 = DirInverseCorrect(vector(up_to, n, A344695(n)));
A347228(n) = v347228[n];
CROSSREFS
Sequence in context: A125715 A129283 A332844 * A330575 A079787 A081307
KEYWORD
sign
AUTHOR
Antti Karttunen, Aug 25 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 May 14 11:58 EDT 2024. Contains 372532 sequences. (Running on oeis4.)