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

A349392
Dirichlet convolution of A126760 with tau (number of divisors function).
7
1, 3, 3, 6, 4, 9, 5, 10, 6, 12, 6, 18, 7, 15, 12, 15, 8, 18, 9, 24, 15, 18, 10, 30, 16, 21, 10, 30, 12, 36, 13, 21, 18, 24, 26, 36, 15, 27, 21, 40, 16, 45, 17, 36, 24, 30, 18, 45, 26, 48, 24, 42, 20, 30, 35, 50, 27, 36, 22, 72, 23, 39, 30, 28, 40, 54, 25, 48, 30, 78, 26, 60, 27, 45, 48, 54, 44, 63, 29, 60, 15, 48
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{d|n} A126760(n/d) * A000005(d).
MATHEMATICA
f[n_] := 2 * Floor[(m = n/2^IntegerExponent[n, 2]/3^IntegerExponent[n, 3])/6] + Mod[m, 3]; a[n_] := DivisorSum[n, f[#] * DivisorSigma[0, n/#] &]; Array[a, 100] (* Amiram Eldar, Nov 16 2021 *)
PROG
(PARI)
A126760(n) = {n&&n\=3^valuation(n, 3)<<valuation(n, 2); n%3+n\6*2}; \\ From A126760
A349392(n) = sumdiv(n, d, A126760(n/d)*numdiv(d));
CROSSREFS
Cf. A347233, A347234, A349390, A349391, A349393, A349395 for other Dirichlet convolutions of A126760. And also A349372.
Sequence in context: A135986 A334848 A284614 * A069734 A265703 A070952
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 15 2021
STATUS
approved