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”).

A378755
Dirichlet convolution of A033879 and A346248.
0
1, 0, 1, 2, 1, 2, 3, 10, 11, 2, 1, 14, 3, 6, 7, 42, 1, 26, 3, 14, 17, 2, 5, 70, 15, 6, 81, 34, 1, 22, 5, 170, 7, 2, 17, 146, 3, 6, 17, 70, 1, 54, 3, 14, 69, 10, 5, 326, 55, 34, 7, 34, 5, 234, 7, 162, 17, 2, 1, 138, 5, 10, 155, 682, 17, 22, 3, 14, 27, 54, 1, 730, 5, 6, 89, 34, 17, 54, 3, 326, 571, 2, 5, 318, 7, 6, 7
OFFSET
1,4
FORMULA
a(n) = Sum_{d|n} A033879(d)*A346248(n/d).
PROG
(PARI)
A033879(n) = (n+n-sigma(n));
A003961(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); };
A252748(n) = (A003961(n) - (2*n));
memoA346248 = Map();
A346248(n) = if(1==n, 1, my(v); if(mapisdefined(memoA346248, n, &v), v, v = -sumdiv(n, d, if(d<n, -A252748(n/d)*A346248(d), 0)); mapput(memoA346248, n, v); (v)));
A378755(n) = sumdiv(n, d, A033879(d)*A346248(n/d));
CROSSREFS
Cf. A033879, A346248, A378754 (Dirichlet inverse).
Sequence in context: A034952 A378754 A337549 * A306456 A178463 A213593
KEYWORD
nonn,new
AUTHOR
Antti Karttunen, Dec 11 2024
STATUS
approved