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”).

A334118
Primitive terms of A334117: odd numbers m such that sigma(m, -1) >= 3/2 with no proper divisors sharing this property.
2
15, 21, 99, 117, 153, 171, 207, 429, 561, 627, 663, 741, 759, 783, 837, 957, 999, 1023, 1107, 1161, 1269, 1431, 1593, 1647, 1809, 1917, 1925, 1971, 2133, 2275, 2695, 2975, 3185, 4235, 5005, 6545, 6723, 7209, 7315, 7735, 7857, 8091, 8181, 8343, 8645, 8667, 8829, 8855
OFFSET
1,1
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
STATUS
approved