OFFSET
1,1
COMMENTS
The density of this sequence exists and is positive. If m is in this sequence, then so is mk, where k is a positive odd number (see A334118).
The numbers of terms that do not exceed 10^k, for k = 2, 3, ..., are 6, 73, 700, 7179, 70759, 709928, 7101533, 70999783, 709865878, 7098956986, ... . Apparently, the asymptotic density of this sequence equals 0.0709... . - Amiram Eldar, Dec 28 2024
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Range[1, 1000, 2], DivisorSigma[-1, #] >= 3/2 &] (* Amiram Eldar, Dec 28 2024 *)
PROG
(PARI) is(n)=n%2 && sigma(n, -1)>=3/2
(PARI) forfactored(n=1, 10^4, if(sigma(n, -1)>=3/2 && n[1]%2, print1(n[1]", ")))
CROSSREFS
KEYWORD
nonn
AUTHOR
Charles R Greathouse IV, Apr 14 2020
STATUS
approved