OFFSET
1,18
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Marc Deléglise, Bounds for the density of abundant integers, Experiment. Math. Volume 7, Issue 2 (1998), 137-143.
Charles R. Wall, Phillip L. Crews and Donald B. Johnson, Density bounds for the sum of divisors function, Math. Comp. 26 (1972), 773-777.
Eric Weisstein's World of Mathematics, Abundant Number
FORMULA
a(n) ~ c*n, where c = 0.247619... is the asymptotic density of the abundant numbers (A302991). - Amiram Eldar, Mar 21 2021
MATHEMATICA
(* Recursive expression with data kept in memory; Enrique Pérez Herrero, Aug 14 2010 *)
PROG
(PARI) a(n) = sum(k=1, n, sigma(k)/k > 2); \\ Michel Marcus, Apr 02 2015
(Magma) [#[k:k in [1..n]| DivisorSigma(1, k) gt 2*k]:n in [1..90]]; // Marius A. Burtea, Nov 06 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Dec 27 2003
STATUS
approved