login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A307961
The number of coreful perfect numbers (A307958) below 10^n.
2
0, 1, 9, 94, 940, 9359, 93611, 936098, 9361056, 93610484
OFFSET
1,3
FORMULA
a(n) ~ c * 10^n, were c = 0.009361... is the asymptotic density of the coreful perfect numbers (A307960).
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
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, May 08 2019
STATUS
approved