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!)
A359169 Dirichlet inverse of the pointwise sum of A349905 (arithmetic derivative of prime shifted n) and A063524 (1, 0, 0, 0, ...). 2
1, -1, -1, -5, -1, -6, -1, -16, -9, -8, -1, -14, -1, -12, -10, -35, -1, -22, -1, -22, -14, -14, -1, 10, -13, -18, -56, -38, -1, -17, -1, -31, -16, -20, -16, 42, -1, -24, -20, -2, -1, -33, -1, -46, -54, -30, -1, 243, -21, -46, -22, -62, -1, -10, -18, -26, -26, -32, -1, 140, -1, -38, -86, 160, -22, -41, -1, -70, -32, -53 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
a(1) = 1, and for n > 1, a(n) = -Sum_{d|n, d<n} A349905(n/d) * a(d).
a(n) = A346241(A003961(n)).
PROG
(PARI)
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
A003961(n) = { my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); };
memoA359169 = Map();
A359169(n) = if(1==n, 1, my(v); if(mapisdefined(memoA359169, n, &v), v, v = -sumdiv(n, d, if(d<n, A349905(n/d)*A359169(d), 0)); mapput(memoA359169, n, v); (v)));
CROSSREFS
Sequence in context: A066805 A326142 A028284 * A096462 A348507 A066948
KEYWORD
sign
AUTHOR
Antti Karttunen, Dec 23 2022
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 17 10:20 EDT 2024. Contains 372594 sequences. (Running on oeis4.)