cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A103594 Smallest prime p such that Sum_{primes q <= p} 1/q >= n/3.

Original entry on oeis.org

2, 3, 5, 13, 53, 277, 2741, 64663, 5195977, 2358926351, 12041724518809, 1801241230056600523
Offset: 1

Views

Author

James R. Buddenhagen, Mar 28 2005

Keywords

Crossrefs

Programs

  • Mathematica
    Table[m = 1; s = 0; While[(s = s + 1/Prime[m]) < n/3, m++];
    Prime[m], {n, 1, 10}] (* Robert Price, Mar 27 2019 *)

Extensions

a(10) from Robert Price, Dec 10 2013
a(11) and a(12) copied from A103600(22) and A016088(4), respectively, by Jon E. Schoenfield, Feb 01 2020