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!)
A347096 a(1) = 1; a(n) = -Sum_{d|n, d < n} A341512(n/d) * a(d), where A341512(n) = sigma(n)*A003961(n) - n*sigma(A003961(n)). 4
1, -1, -2, -10, -2, -32, -4, -64, -42, -54, -2, -214, -4, -112, -112, -316, -2, -469, -4, -412, -232, -168, -6, -792, -90, -262, -612, -860, -2, -1208, -6, -1216, -340, -354, -320, -1655, -4, -484, -532, -1760, -2, -2528, -4, -1438, -1850, -732, -6, 160, -364, -1863, -712, -2210, -6, -4596, -384, -3696, -976, -942, -2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Dirichlet inverse of the pointwise sum of A341512 and A063524 (1, 0, 0, 0, ...).
LINKS
FORMULA
a(1) = 1; and for n > 1, a(n) = -Sum_{d|n, d < n} A341512(n/d) * a(d).
For all n >= 1, a(A000040(n)) = -A001223(n).
PROG
(PARI)
up_to = 16384;
A003961(n) = { my(f=factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); }; \\ From A003961
A341512(n) = { my(u=A003961(n)); ((sigma(n)*u) - (n*sigma(u))); };
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.
Aux347096(n) = if(1==n, n, A341512(n));
v347096 = DirInverseCorrect(vector(up_to, n, Aux347096(n)));
A347096(n) = v347096[n];
CROSSREFS
Cf. also A346235, A346239.
Sequence in context: A010700 A121521 A280033 * A346239 A188635 A246479
KEYWORD
sign,look
AUTHOR
Antti Karttunen, Aug 19 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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)