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

A103595
Smallest number m such that Sum_{k=1..m} 1/prime(k) >= n/4.
0
1, 1, 2, 3, 5, 10, 21, 59, 231, 1413, 15474, 361139, 22347214, 4833601540
OFFSET
1,3
COMMENTS
a(15) > 5*10^10. - Robert Price, Dec 10 2013
MATHEMATICA
Table[m = 1; s = 0; While[(s = s + 1/Prime[m]) < n/4, m++];
m, {n, 1, 14}] (* Robert Price, Mar 27 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(1) and a(13)-a(14) from Robert Price, Dec 10 2013
STATUS
approved