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.

A322287 The number of odd abundant numbers below 10^n.

Original entry on oeis.org

0, 0, 1, 23, 210, 1996, 20661, 205366, 2048662, 20502004, 204951472
Offset: 1

Views

Author

Amiram Eldar, Aug 28 2019

Keywords

Comments

Anderson proved that the density of odd deficient numbers is at least (48 - 3*Pi^2)/(32 - Pi^2) ~ 0.831...
Kobayashi et al. proved that the density of odd abundant numbers is between 0.002042 and 0.002071.

Examples

			945 is the only odd abundant number below 10^3, thus a(3) = 1.
		

Crossrefs

Programs

  • Mathematica
    abQ[n_] := DivisorSigma[1, n] > 2 n; c = 0; k = 1; s = {}; Do[While[k < 10^n, If[abQ[k], c++]; k += 2]; AppendTo[s, c], {n, 1, 5}]; s

Formula

Lim_{n->oo} a(n)/10^n = 0.0020... is the density of odd abundant numbers.