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

A074811
Least k such that prime(k) >= k*tau(k*n) where tau = A000005.
0
1, 1, 1, 181, 1, 1061, 1, 1061, 181, 1061, 1, 40123, 1, 1061, 1061, 6473, 1, 40123, 1, 40123, 1061, 1061, 1, 1617211, 181, 1061, 1061, 40123, 1, 1617211, 1, 40123, 1061, 1061, 1061, 10553429, 1, 1061, 1061, 1617211, 1, 1617211, 1, 40123, 40123, 1061, 1, 69709687
OFFSET
1,4
COMMENTS
Listed terms are = 1 or are primes.
a(n) = 1 iff n = 1 or n is prime. - Bernard Schott, Apr 10 2020
PROG
(PARI) a(n)=if(n<0, 0, my(s=1); while(prime(s)<s*numdiv(s*n), s++); s)
(PARI) a(n)= my(k=1, p=2); while(p<k*numdiv(k*n), k++; p=nextprime(p+1)); k; \\ Michel Marcus, Apr 05 2020
CROSSREFS
Cf. A000005.
Sequence in context: A358413 A236235 A225349 * A036200 A357657 A253432
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Sep 08 2002
EXTENSIONS
More terms from Jinyuan Wang, Apr 05 2020
Name corrected by Bernard Schott, Apr 10 2020
STATUS
approved