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

A067291
Numbers n such that prime(n)>n*tau(n) where tau(n) is the number of divisors of n.
1
1, 5, 7, 11, 13, 17, 19, 23, 25, 29, 31, 33, 34, 35, 37, 38, 39, 41, 43, 46, 47, 49, 51, 53, 55, 57, 58, 59, 61, 62, 65, 67, 69, 71, 73, 74, 77, 79, 81, 82, 83, 85, 86, 87, 89, 91, 93, 94, 95, 97, 101, 103, 106, 107, 109, 111, 113, 115, 118, 119, 121, 122, 123, 125, 127
OFFSET
1,2
LINKS
MAPLE
with(numtheory); A067291:=n->`if`(ithprime(n)>n*tau(n), n, NULL); seq(A067291(n), n=1..127); # Wesley Ivan Hurt, Nov 21 2013
MATHEMATICA
Select[Range[200], Prime[#]># DivisorSigma[0, #]&] (* Harvey P. Dale, Jan 13 2020 *)
PROG
(PARI) for(n=1, 161, if(prime(n)>n*numdiv(n), print1(n, ", ")))
CROSSREFS
Cf. A000005.
Sequence in context: A306289 A136801 A106571 * A286265 A339911 A007310
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Feb 24 2002
STATUS
approved