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!)
A359603 Dirichlet inverse of function f(n) = 1+(A003415(n)*A276086(n)), where A003415 is the arithmetic derivative and A276086 is the primorial base exp-function. 7

%I #11 Jan 11 2023 20:59:58

%S 1,-4,-7,-21,-19,30,-11,51,-132,-164,-91,-11,-51,-588,-935,-5904,-451,

%T -1402,-251,-5979,-7347,-13898,-2251,-25507,-12140,-27718,-99060,

%U -174307,-11251,11610,-15,52653,685,2410,-1095,24800,-71,-198,-2647,53673,-631,61020,-351,94173,-20052,-21368,-3151,207838

%N Dirichlet inverse of function f(n) = 1+(A003415(n)*A276086(n)), where A003415 is the arithmetic derivative and A276086 is the primorial base exp-function.

%H Antti Karttunen, <a href="/A359603/b359603.txt">Table of n, a(n) for n = 1..11550</a>

%H <a href="/index/Pri#primorialbase">Index entries for sequences related to primorial base</a>

%F a(1) = 1, and for n > 1, a(n) = -Sum_{d|n, d<n} (1+A358669(n/d)) * a(d).

%o (PARI)

%o A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));

%o A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };

%o A358669(n) = (A003415(n)*A276086(n));

%o memoA359603 = Map();

%o A359603(n) = if(1==n,1,my(v); if(mapisdefined(memoA359603,n,&v), v, v = -sumdiv(n,d,if(d<n,(1+A358669(n/d))*A359603(d),0)); mapput(memoA359603,n,v); (v)));

%Y Cf. A003415, A276086, A358669, A359590 (parity of terms), A359604 [= a(n) mod 60].

%Y Cf. also A359427, A359589.

%K sign,easy

%O 1,2

%A _Antti Karttunen_, Jan 11 2023

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 September 8 12:42 EDT 2024. Contains 375753 sequences. (Running on oeis4.)