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.

Previous Showing 11-13 of 13 results.

A220281 a(n) is the smallest number, such that for all N >= a(n) there are at least n primes between 14*N and 15*N.

Original entry on oeis.org

2, 11, 24, 37, 38, 39, 50, 96, 96, 96, 96, 97, 97, 125, 125, 132, 178, 178, 178, 179, 179, 180, 213, 221, 222, 222, 224, 235, 235, 242, 282, 283, 307, 309, 310, 360, 360, 361, 362, 366, 367, 367, 377, 377, 377, 421, 422, 458, 458, 502, 503, 504
Offset: 1

Views

Author

Keywords

Crossrefs

Formula

a(n) <= ceiling(R_(15/14)(n)/15), where R_v(n) (v>1) are generalized Ramanujan numbers (see Shevelev's link). In particular, for n >= 1, {R_(15/14)(n)}={127, 307, 347, 563, 569, 733, 1423, 1427, 1429, 1433, 1439, 1447, ...}. Moreover, if R_(15/14)(n) == 1 or 2 (mod 10), then a(n) = ceiling(R_(15/14)(n)/15).

A220850 a(n+1) is equal to a(n) plus the number of primes between a(n) and 2*a(n) inclusively.

Original entry on oeis.org

1, 2, 4, 6, 8, 10, 14, 17, 22, 28, 35, 43, 53, 65, 78, 93, 111, 129, 153, 179, 210, 245, 285, 328, 381, 441, 508, 582, 668, 764, 870, 990, 1123, 1270, 1436, 1625, 1825, 2054, 2309, 2590, 2904, 3246, 3631, 4052, 4512, 5022, 5582, 6197, 6872, 7612, 8421, 9312
Offset: 1

Views

Author

Robert G. Wilson v, Dec 22 2012

Keywords

Examples

			a(6) = the number of primes between a(5) and 2*a(5) plus a(5) = the number of primes [8, 16] + 8 = 2 + 8 = 10.
		

Crossrefs

Cf. A035250, A220851, inspired by A084140.

Programs

  • Mathematica
    f[n_] := PrimePi[ 2n] - PrimePi[n - 1]; NestList[# +f@# &, 1, 50]

A220851 a(n+1) is equal to a(n) plus the number of primes between a(n) and 2*a(n) exclusively.

Original entry on oeis.org

2, 3, 4, 6, 8, 10, 14, 17, 21, 26, 32, 39, 48, 57, 71, 85, 101, 121, 144, 171, 200, 232, 272, 314, 363, 419, 483, 553, 637, 727, 829, 944, 1073, 1217, 1378, 1560, 1758, 1975, 2225, 2498, 2799, 3130, 3498, 3909, 4357, 4848, 5394, 5996, 6651, 7374, 8163
Offset: 1

Views

Author

Robert G. Wilson v, Dec 22 2012

Keywords

Examples

			a(6) = the number of primes between a(5) and 2*a(5) plus a(5) = the number of primes ]8, 16[ + 8 = 2 + 8 = 10.
		

Crossrefs

Cf. A060715, A220850, inspired by A084140.

Programs

  • Mathematica
    f[n_] := PrimePi[2n - 1] - PrimePi[n]; NestList[# + f@# &, 2, 50]
Previous Showing 11-13 of 13 results.