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!)
A359789 Dirichlet inverse of A036288, where A036288(n) = 1 + sopfr(n), where sopfr is the sum of prime divisors with repetition, A001414. 7
1, -3, -4, 4, -6, 18, -8, -4, 9, 28, -12, -40, -14, 38, 39, 4, -18, -63, -20, -64, 53, 58, -24, 64, 25, 68, -18, -88, -30, -253, -32, -4, 81, 88, 83, 216, -38, 98, 95, 104, -42, -347, -44, -136, -144, 118, -48, -88, 49, -175, 123, -160, -54, 180, 127, 144, 137, 148, -60, 820, -62, 158, -198, 4, 149, -535 (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} A036288(n/d) * a(d).
PROG
(PARI)
A001414(n) = ((n=factor(n))[, 1]~*n[, 2]); \\ From A001414.
memoA359789 = Map();
A359789(n) = if(1==n, 1, my(v); if(mapisdefined(memoA359789, n, &v), v, v = -sumdiv(n, d, if(d<n, (1+A001414(n/d))*A359789(d), 0)); mapput(memoA359789, n, v); (v)));
CROSSREFS
Cf. A001414, A036288, A359774 (parity of terms).
Sequence in context: A363289 A019462 A078071 * A084138 A127141 A272668
KEYWORD
sign
AUTHOR
Antti Karttunen, Jan 15 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 28 16:44 EDT 2024. Contains 375508 sequences. (Running on oeis4.)