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.

A059786 Smallest prime after 2*(n-th prime).

Original entry on oeis.org

5, 7, 11, 17, 23, 29, 37, 41, 47, 59, 67, 79, 83, 89, 97, 107, 127, 127, 137, 149, 149, 163, 167, 179, 197, 211, 211, 223, 223, 227, 257, 263, 277, 281, 307, 307, 317, 331, 337, 347, 359, 367, 383, 389, 397, 401, 431, 449, 457, 461, 467, 479, 487, 503, 521
Offset: 1

Views

Author

Labos Elemer, Feb 22 2001

Keywords

Examples

			n=17, 18, p(17)=59, p(18)=61, after 118 and 122 the next prime is 127, so a(17)=a(18)=127.
		

Crossrefs

Programs

  • Maple
    with(numtheory): [seq(nextprime(2*ithprime(k)),k=1..256)];
  • Mathematica
    NextPrime/@(2*Prime[Range[60]]) (* Harvey P. Dale, May 03 2019 *)
  • PARI
    a(n) = nextprime(2*prime(n)+1); \\ Michel Marcus, Sep 21 2017

Formula

a(n) = A117928(n,1) for n>1. - Reinhard Zumkeller, Apr 03 2006