The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A302992 Number of abundant numbers < 10^n. 12
0, 21, 245, 2487, 24794, 247544, 2476736, 24760667, 247610954, 2476238920, 24761949212, 247617948446, 2476198914588, 24762008009145, 247619645317536, 2476194603970937, 24761962442728106 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Limit_{n->oo} a(n)/10^n = 0.2476... is the density of abundant numbers (A302991).
MATHEMATICA
abQ[n_]:=DivisorSigma[1, n]>2n; c = 0; k = 1; seq={}; Do[ While[ k < 10^n, If[ abQ[k], c++ ]; k ++]; AppendTo[seq, c], {n, 1, 5}]; seq
PROG
(PARI) a(n) = sum(k=1, 10^n-1, sigma(k) > 2*k); \\ Michel Marcus, Apr 17 2018
CROSSREFS
Sequence in context: A271792 A177730 A199300 * A344919 A165095 A165099
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Apr 17 2018
EXTENSIONS
a(10) from Daniel Suteu, Apr 22 2018
a(11)-a(17) from Hiroaki Yamanouchi, Aug 03 2018
STATUS
approved

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 May 14 14:46 EDT 2024. Contains 372533 sequences. (Running on oeis4.)