OFFSET
1,1
COMMENTS
From Peter Munn, Jan 30 2026: (Start)
sigma(m, -1) can also be written sigma(m)/m = A000203(m)/m.
If we include 2 with the terms we get the equivalent set of primitives with the restriction to odd numbers removed.
(End)
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Range[1, 10^4, 2], DivisorSigma[-1, #] >= 3/2 && Max[DivisorSigma[-1, Most[Divisors[#]]]] < 3/2 &] (* Amiram Eldar, Dec 28 2024 *)
PROG
(PARI) list(lim)=my(v=List(), k); forfactored(n=15, lim\1, if(sigma(n, -1)>=3/2 && (k=n[1])%2, for(i=1, #v, if(k%v[i]==0, next(2))); listput(v, k))); Vec(v)
CROSSREFS
KEYWORD
nonn
AUTHOR
Charles R Greathouse IV, Apr 14 2020
STATUS
approved
