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!)
A359589 Dirichlet inverse of function f(n) = (-1 + gcd(A003415(n), A276086(n))), where A003415 is the arithmetic derivative and A276086 is the primorial base exp-function. 9
1, 0, 0, 0, 0, -4, 0, -2, -5, 0, 0, 0, 0, -2, -1, 0, 0, 0, 0, -2, -9, 0, 0, 0, -9, -14, -2, 0, 0, 0, 0, 0, -13, 0, -5, 12, 0, -20, -1, 0, 0, 0, 0, -2, -2, -24, 0, 10, -13, -14, -9, -6, 0, 40, -1, 0, -1, 0, 0, 0, 0, -2, -2, 2, -17, 0, 0, -2, -1, 0, 0, 20, 0, -2, -4, -4, -17, 0, 0, 0, 20, 0, 0, 16, -1, -14, -1, -34 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
LINKS
FORMULA
a(1) = 1, and for n > 1, a(n) = -Sum_{d|n, d<n} (A327858(n/d)-1) * a(d).
a(n) == A358777(n) mod 2.
PROG
(PARI)
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
A327858(n) = gcd(A003415(n), A276086(n));
memoA359589 = Map();
A359589(n) = if(1==n, 1, my(v); if(mapisdefined(memoA359589, n, &v), v, v = -sumdiv(n, d, if(d<n, (A327858(n/d)-1)*A359589(d), 0)); mapput(memoA359589, n, v); (v)));
CROSSREFS
Cf. A003415, A276086, A327858, A359595 (parity of terms), A359596 (positions of odd terms).
Agrees paritywise with A358777.
Sequence in context: A201399 A145894 A366889 * A021881 A021717 A016679
KEYWORD
sign
AUTHOR
Antti Karttunen, Jan 09 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 July 9 04:17 EDT 2024. Contains 374171 sequences. (Running on oeis4.)