OFFSET
1,3
COMMENTS
Number of arithmetic numbers <= n, cf. A003601; partial sums of A245656. - Reinhard Zumkeller, Jul 28 2014
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
Paul T. Bateman, Paul Erdős, Carl Pomerance, and E. G. Straus, The arithmetic mean of the divisors of an integer, in: Marvin I. Knopp (ed.), Analytic number theory, Proceedings of a Conference Held at Temple University, Philadelphia, May 12-15, 1980, Lecture Notes in Mathematics, Vol. 899, Springer-Verlag, 1981, pp. 197-220; alternative link.
Amiram Eldar, Plot of a(n)/n for n = 2^(10..33).
Wikipedia, Arithmetic number.
FORMULA
a(n) = Card(k: 1<=k<=n : sigma(k) == 0 (mod tau(k))).
Limit_{n -> infinity} a(n)/n = C = 0.8...
Bateman et al. (1981) proved that the asymptotic density of the arithmetic numbers is 1. Therefore, the formula above is correct, but limit is C = 1. - Amiram Eldar, Dec 28 2024
MATHEMATICA
Accumulate[Table[If[Divisible[DivisorSigma[1, n], DivisorSigma[0, n]], 1, 0], {n, 80}]] (* Harvey P. Dale, Oct 06 2020 *)
PROG
(PARI) for(n=1, 150, print1(sum(i=1, n, if(sigma(i)%numdiv(i), 0, 1)), ", "))
(Haskell)
a069928 n = a069928_list !! (n-1)
a069928_list = scanl1 (+) a245656_list
-- Reinhard Zumkeller, Jul 28 2014
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, May 05 2002
STATUS
approved
