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

A067250
Numbers n such that prime(n) = floor(n*log(n*omega(n))).
0
10, 57, 92, 99, 123, 124, 1677, 2485, 32578, 33165, 33220, 451140, 5954790
OFFSET
1,1
COMMENTS
Next term, if it exists, is bigger than 2*10^6. - Stefan Steinerberger, Apr 09 2006
a(14) > 10^9. - Donovan Johnson, Aug 03 2009
MATHEMATICA
For[n = 200000, n < 2000000, n++, If[Prime[n] == Floor[n*Log[n*Length[FactorInteger[n]]]], Print[n]]] (* Stefan Steinerberger, Apr 09 2006 *)
CROSSREFS
Sequence in context: A034195 A351458 A378894 * A061005 A006550 A047780
KEYWORD
more,nonn
AUTHOR
Benoit Cloitre, Feb 20 2002
EXTENSIONS
a(12) from Stefan Steinerberger, Apr 09 2006
a(13) from Donovan Johnson, Aug 03 2009
STATUS
approved