login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A091194 Number of abundant numbers <= n. 4

%I #23 Sep 08 2022 08:45:12

%S 0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,3,3,3,4,4,4,4,4,4,5,5,5,5,5,

%T 5,6,6,6,6,7,7,8,8,8,8,8,8,9,9,9,9,9,9,10,10,11,11,11,11,12,12,12,12,

%U 12,12,13,13,13,13,14,14,15,15,15,15,15,15,16,16,17,17,17,17,18,18,18

%N Number of abundant numbers <= n.

%H Amiram Eldar, <a href="/A091194/b091194.txt">Table of n, a(n) for n = 1..10000</a>

%H Marc Deléglise, <a href="http://projecteuclid.org/euclid.em/1048515661">Bounds for the density of abundant integers</a>, Experiment. Math. Volume 7, Issue 2 (1998), 137-143.

%H Charles R. Wall, Phillip L. Crews and Donald B. Johnson, <a href="http://dx.doi.org/10.1090/S0025-5718-1972-0327700-7">Density bounds for the sum of divisors function</a>, Math. Comp. 26 (1972), 773-777.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/AbundantNumber.html">Abundant Number</a>

%F a(n) ~ c*n, where c = 0.247619... is the asymptotic density of the abundant numbers (A302991). - _Amiram Eldar_, Mar 21 2021

%t A091194[1]=0; A091194[n_]:=A091194[n]=A091194[n-1]+Boole[DivisorSigma[1,n]>2n];

%t (* Recursive expression with data kept in memory; _Enrique Pérez Herrero_, Aug 14 2010 *)

%o (PARI) a(n) = sum(k=1, n, sigma(k)/k > 2); \\ _Michel Marcus_, Apr 02 2015

%o (Magma) [#[k:k in [1..n]| DivisorSigma(1,k) gt 2*k]:n in [1..90]]; // _Marius A. Burtea_, Nov 06 2019

%Y Partial sums of A294937.

%Y Cf. A005101, A091195, A256562, A302991.

%K nonn

%O 1,18

%A _Reinhard Zumkeller_, Dec 27 2003

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 06:04 EDT 2024. Contains 371906 sequences. (Running on oeis4.)