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

A344226
a(n) = Sum_{d|n} n^omega(d) / d.
3
1, 2, 2, 4, 2, 12, 2, 8, 5, 18, 2, 50, 2, 24, 24, 16, 2, 90, 2, 80, 32, 36, 2, 198, 7, 42, 14, 110, 2, 1232, 2, 32, 48, 54, 48, 476, 2, 60, 56, 324, 2, 2310, 2, 170, 210, 72, 2, 782, 9, 338, 72, 200, 2, 756, 72, 450, 80, 90, 2, 12558, 2, 96, 290, 64, 84, 5474, 2, 260, 96, 5940
OFFSET
1,2
LINKS
FORMULA
a(n) = (1/n) * Sum_{k=1..n} tau(gcd(k,n)^n).
a(n) = (1/n) * Sum_{d|n} phi(n/d) * tau(d^n).
If p is prime, a(p) = 2.
MATHEMATICA
Table[DivisorSum[n, n^PrimeNu@#/#&], {n, 100}] (* Giorgos Kalogeropoulos, May 13 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, n^omega(d)/d);
(PARI) a(n) = sum(k=1, n, numdiv(gcd(k, n)^n))/n;
(PARI) a(n) = sumdiv(n, d, eulerphi(n/d)*numdiv(d^n))/n;
CROSSREFS
Sequence in context: A341699 A294072 A329600 * A305792 A317942 A296071
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 12 2021
STATUS
approved