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

A346010
a(n) is the denominator of the average number of distinct prime factors of the divisors of n.
9
1, 2, 2, 3, 2, 1, 2, 4, 3, 1, 2, 6, 2, 1, 1, 5, 2, 6, 2, 6, 1, 1, 2, 4, 3, 1, 4, 6, 2, 2, 2, 6, 1, 1, 1, 3, 2, 1, 1, 4, 2, 2, 2, 6, 6, 1, 2, 10, 3, 6, 1, 6, 2, 4, 1, 4, 1, 1, 2, 3, 2, 1, 6, 7, 1, 2, 2, 6, 1, 2, 2, 12, 2, 1, 6, 6, 1, 2, 2, 10, 5, 1, 2, 3, 1, 1
OFFSET
1,2
COMMENTS
See A346009 for details.
LINKS
R. L. Duncan, Note on the divisors of a number, The American Mathematical Monthly, Vol. 68, No. 4 (1961), pp. 356-359.
Sébastien Gaboury, Sur les convolutions de fonctions arithmétiques, M.Sc. thesis, Laval University, Quebec, 2007.
MATHEMATICA
a[n_] := Denominator[DivisorSum[n, PrimeNu[#] &]/DivisorSigma[0, n]]; Array[a, 100]
(* or *)
f[p_, e_] := e/(e+1); a[1] = 1; a[n_] := Denominator[Plus @@ f @@@ FactorInteger[n]]; Array[a, 100]
CROSSREFS
Cf. A346009 (numerators).
Sequence in context: A007906 A044050 A096826 * A116199 A369031 A162915
KEYWORD
nonn,frac
AUTHOR
Amiram Eldar, Jul 01 2021
STATUS
approved