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.

Showing 1-2 of 2 results.

A307821 The number of exponential abundant numbers below 10^n.

Original entry on oeis.org

0, 0, 1, 12, 102, 1045, 10449, 104365, 1043641, 10436775, 104367354
Offset: 1

Views

Author

Amiram Eldar, Apr 30 2019

Keywords

Examples

			Below 10^3 there is only one exponential abundant number, A129575(1) = 900, thus a(3) = 1.
		

Crossrefs

Programs

  • Mathematica
    fun[p_, e_] := DivisorSum[e, p^# &]; esigma[1] = 1; esigma[n_] := Times @@ fun @@@ FactorInteger[n]; c = 0; k = 1; seq={}; Do[ While[ k < 10^n, If[ esigma[k]>2k, c++ ]; k ++]; AppendTo[seq, c], {n, 1, 5}]; seq

Formula

Limit_{n->oo} a(n)/10^n = 0.001043673... is the density of exponential abundant numbers (see A129575). [Updated by Amiram Eldar, Sep 02 2022]

Extensions

a(11) from Amiram Eldar, Sep 02 2022

A307961 The number of coreful perfect numbers (A307958) below 10^n.

Original entry on oeis.org

0, 1, 9, 94, 940, 9359, 93611, 936098, 9361056, 93610484, 936104756, 9361047434
Offset: 1

Views

Author

Amiram Eldar, May 08 2019

Keywords

Crossrefs

Programs

  • Mathematica
    f[p_,e_] := (p^(e+1)-1)/(p-1)-1; csigma[1]=1; csigma[n_] := Times @@ (f @@@ FactorInteger[n]); cpQ[n_] := csigma[n] == 2*n; s={}; c=0; p=100; Do[If[k==p, AppendTo[s, c]; p*=10]; If[cpQ[k], c++], {k, 1, 1000001}]; s

Formula

a(n) ~ c * 10^n, were c = 0.009361... is the asymptotic density of the coreful perfect numbers (A307960).

Extensions

a(11)-a(12) from Amiram Eldar, Jul 25 2025
Showing 1-2 of 2 results.