cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A346010 a(n) is the denominator of the average number of distinct prime factors of the divisors of n.

This page as a plain text file.
%I A346010 #8 Jul 02 2021 03:49:00
%S A346010 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,
%T A346010 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,
%U A346010 1,2,2,12,2,1,6,6,1,2,2,10,5,1,2,3,1,1
%N A346010 a(n) is the denominator of the average number of distinct prime factors of the divisors of n.
%C A346010 See A346009 for details.
%H A346010 Amiram Eldar, <a href="/A346010/b346010.txt">Table of n, a(n) for n = 1..10000</a>
%H A346010 R. L. Duncan, <a href="https://www.jstor.org/stable/2311587">Note on the divisors of a number</a>, The American Mathematical Monthly, Vol. 68, No. 4 (1961), pp. 356-359.
%H A346010 Sébastien Gaboury, <a href="http://hdl.handle.net/20.500.11794/18899">Sur les convolutions de fonctions arithmétiques</a>, M.Sc. thesis, Laval University, Quebec, 2007.
%t A346010 a[n_] := Denominator[DivisorSum[n, PrimeNu[#] &]/DivisorSigma[0, n]]; Array[a, 100]
%t A346010 (* or *)
%t A346010 f[p_, e_] := e/(e+1); a[1] = 1; a[n_] := Denominator[Plus @@ f @@@ FactorInteger[n]]; Array[a, 100]
%Y A346010 Cf. A346009 (numerators).
%K A346010 nonn,frac
%O A346010 1,2
%A A346010 _Amiram Eldar_, Jul 01 2021