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.

A077019 a(n) is the smallest number for which the prime distance A051699 is equal to n.

Original entry on oeis.org

2, 1, 0, 26, 93, 118, 119, 120, 531, 532, 897, 1140, 1339, 1340, 1341, 1342, 1343, 1344, 9569, 15702, 15703, 15704, 15705, 19632, 19633, 19634, 19635, 31424, 31425, 31426, 31427, 31428, 31429, 31430, 31431, 31432, 31433, 155958, 155959, 155960, 155961, 155962, 155963, 155964
Offset: 0

Views

Author

Eric W. Weisstein, Oct 17 2002

Keywords

Crossrefs

Programs

  • PARI
    d(n) = if(n<1, 2*(n==0), min(nextprime(n)-n, n-precprime(n))); \\ A051699
    a(n) = my(k=0); while (d(k) != n, k++); k; \\ Michel Marcus, Aug 21 2019

Extensions

More terms from Michel Marcus, Aug 21 2019