Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
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!)
A359790 Dirichlet inverse of function f(n) = 1 + n', where n' stands for the arithmetic derivative of n, A003415(n). 8
1, -2, -2, -1, -2, 2, -2, -1, -3, 0, -2, 3, -2, -2, -1, 0, -2, 6, -2, 3, -3, -6, -2, 7, -7, -8, -8, 3, -2, 12, -2, 3, -7, -12, -5, 9, -2, -14, -9, 11, -2, 18, -2, 3, 0, -18, -2, 11, -11, 6, -13, 3, -2, 26, -9, 15, -15, -24, -2, 17, -2, -26, -4, 9, -11, 30, -2, 3, -19, 16, -2, 9, -2, -32, 0, 3, -11, 36, -2, 23, -16, -36 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(1) = 1, and for n > 1, a(n) = -Sum_{d|n, d<n} (1+A003415(n/d)) * a(d).
PROG
(PARI)
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
memoA359790 = Map();
A359790(n) = if(1==n, 1, my(v); if(mapisdefined(memoA359790, n, &v), v, v = -sumdiv(n, d, if(d<n, (1+A003415(n/d))*A359790(d), 0)); mapput(memoA359790, n, v); (v)));
CROSSREFS
Cf. A003415, A359780, A359781 (parity of terms), A359782 (positions of even terms), A359783 (of odd terms).
Cf. also A346241, A347082, A347084, A359603, A359789, A359791 [= a(A003961(n))] (for similar constructions).
Sequence in context: A116543 A256911 A347562 * A107260 A338236 A279346
KEYWORD
sign
AUTHOR
Antti Karttunen, Jan 13 2023
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 22 03:40 EDT 2024. Contains 375354 sequences. (Running on oeis4.)