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.

A256562 Number of deficient numbers <= n.

Original entry on oeis.org

1, 2, 3, 4, 5, 5, 6, 7, 8, 9, 10, 10, 11, 12, 13, 14, 15, 15, 16, 16, 17, 18, 19, 19, 20, 21, 22, 22, 23, 23, 24, 25, 26, 27, 28, 28, 29, 30, 31, 31, 32, 32, 33, 34, 35, 36, 37, 37, 38, 39, 40, 41, 42, 42, 43, 43, 44, 45, 46, 46, 47, 48, 49, 50, 51, 51, 52, 53
Offset: 1

Views

Author

Michel Marcus, Apr 02 2015

Keywords

Examples

			For k=1 to 5, all numbers are deficients so a(k) = k in this range.
a(6) = 5 since 6 is the first number that is not deficient.
		

Crossrefs

Partial sums of A294934.
Cf. A000396 (perfect), A005100 (deficient), A005101 (abundant).
Cf. A091194 (number of abundant numbers <= n).

Programs

  • Magma
    [#[k:k in [1..n]| DivisorSigma(1,k) lt 2*k]:n in [1..70]]; // Marius A. Burtea, Nov 06 2019
  • Mathematica
    a[n_]:=Length[Select[Range[n],DivisorSigma[1,#]/#<2&]];a/@Range[68] (* Ivan N. Ianakiev, Apr 03 2015 *)
  • PARI
    a(n) = sum(k=1, n, sigma(k)/k < 2);
    

Formula

a(n) ~ c*n, where c = 0.752380... is the asymptotic density of the deficient numbers (A318172). - Amiram Eldar, Mar 21 2021