login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A347396
a(n) = A347395(A276086(n)), where A347395 is Dirichlet convolution of Liouville's lambda with A342001.
5
0, 1, 1, 3, 1, 2, 1, 5, 6, 14, 5, 9, 1, 2, 3, 5, 2, 3, 2, 6, 8, 16, 6, 10, 2, 3, 5, 7, 3, 4, 1, 7, 8, 20, 7, 13, 10, 34, 44, 92, 34, 58, 7, 13, 20, 32, 13, 19, 16, 40, 56, 104, 40, 64, 13, 19, 32, 44, 19, 25, 1, 2, 3, 5, 2, 3, 5, 9, 14, 22, 9, 13, 2, 3, 5, 7, 3, 4, 6, 10, 16, 24, 10, 14, 3, 4, 7, 9, 4, 5, 2, 8, 10, 22
OFFSET
0,4
COMMENTS
The scatter plot looks quite peculiar. - Antti Karttunen, Sep 20 2021
PROG
(PARI)
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
A003557(n) = (n/factorback(factorint(n)[, 1]));
A342001(n) = (A003415(n) / A003557(n));
A008836(n) = ((-1)^bigomega(n));
A347395(n) = sumdiv(n, d, A008836(n/d)*A342001(d));
A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
KEYWORD
nonn,base,look
AUTHOR
Antti Karttunen, Sep 02 2021
STATUS
approved