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

A067893
Nonprimes k such that tau(k)*sigma(k) < prime(k) where tau(k) = A000005(k) and sigma(k) = A000203(k).
1
1, 25, 49, 77, 85, 91, 95, 115, 119, 121, 123, 125, 129, 133, 141, 143, 145, 155, 159, 161, 169, 177, 183, 185, 187, 194, 201, 202, 203, 205, 206, 209, 213, 214, 215, 217, 218, 219, 221, 226, 235, 237, 247, 249, 253, 254, 259, 262, 265, 267, 274, 278, 287
OFFSET
1,2
LINKS
MATHEMATICA
Select[Range[300], !PrimeQ[#]&&DivisorSigma[0, #]DivisorSigma[1, #]<Prime[ #]&](* Harvey P. Dale, Nov 09 2017 *)
PROG
(PARI) isok(k) = !isprime(k) && (numdiv(k)*sigma(k) < prime(k)); \\ Michel Marcus, Jul 18 2019
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Mar 02 2002
EXTENSIONS
Typo in definition corrected by Jonathan Sondow, Nov 20 2012
STATUS
approved