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!)
A323408 Sum of unitary phi and its Dirichlet inverse: a(n) = A047994(n) + A323407(n). 3
2, 0, 0, 1, 0, 4, 0, 5, 4, 8, 0, 10, 0, 12, 16, 15, 0, 12, 0, 20, 24, 20, 0, 18, 16, 24, 24, 30, 0, 0, 0, 35, 40, 32, 48, 32, 0, 36, 48, 36, 0, 0, 0, 50, 48, 44, 0, 30, 36, 32, 64, 60, 0, 28, 80, 54, 72, 56, 0, 8, 0, 60, 72, 71, 96, 0, 0, 80, 88, 0, 0, 64, 0, 72, 64, 90, 120, 0, 0, 60, 88, 80, 0, 12, 128, 84, 112, 90, 0, 16, 144, 110, 120 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
PROG
(PARI)
up_to = 65537;
DirInverse(v) = { my(u=vector(#v)); u[1] = (1/v[1]); for(n=2, #v, u[n] = -sumdiv(n, d, if(d<n, v[n/d]*u[d], 0))); (u) }; \\ Compute the Dirichlet inverse of the sequence given in input vector v.
A047994(n) = { my(f=factor(n)~); prod(i=1, #f, (f[1, i]^f[2, i])-1); };
v323407 = DirInverse(vector(up_to, n, A047994(n)));
A323407(n) = v323407[n];
A323408(n) = (A047994(n) + A323407(n));
CROSSREFS
Sequence in context: A319340 A349389 A354876 * A347099 A347239 A347097
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 15 2019
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 September 2 13:09 EDT 2024. Contains 375613 sequences. (Running on oeis4.)