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!)
A095300 Numbers n such that A094758(n) < n. 3
2, 6, 10, 12, 14, 18, 22, 24, 26, 30, 34, 38, 42, 46, 50, 54, 58, 60, 62, 66, 70, 74, 78, 82, 84, 86, 90, 94, 96, 98, 102, 106, 110, 114, 118, 120, 122, 126, 130, 132, 134, 138, 142, 146, 150, 154, 156, 158, 162, 166, 168, 170, 174, 178, 182, 186, 190, 194, 198, 202 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The numbers of terms not exceeding 10^k, for k = 1, 2, ..., are 3, 30, 298, 2990, 29881, 298792, 2987904, 29879025, ... . Apparently, the asymptotic density of this sequence exists and equals 0.29879... . - Amiram Eldar, Jan 18 2024
LINKS
EXAMPLE
A094758(2) = 1 < 2, hence 2 is in the sequence.
MATHEMATICA
aQ[n_] := Module[{k = 1, r = DivisorSigma[0, n]/n}, While[DivisorSigma[0, k]/k != r, k++]; k < n]; Select[Range[200], aQ] (* Amiram Eldar, Aug 19 2019 *)
PROG
(PARI) for(n=1, 205, s=numdiv(n); k=1; while(n*numdiv(k)!=k*s, k++); if(k<n, print1(n, ", ")));
CROSSREFS
Sequence in context: A139710 A194712 A057921 * A097381 A264964 A195064
KEYWORD
nonn
AUTHOR
Klaus Brockhaus, Jun 01 2004
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)