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.

Showing 1-1 of 1 results.

A289357 Least number k such that n^2 + n - k is prime.

Original entry on oeis.org

0, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 5, 1, 11, 1, 1, 13, 5, 1, 1, 1, 3, 5, 1, 3, 1, 5, 1, 7, 1, 1, 5, 5, 3, 1, 5, 7, 1, 1, 3, 1, 5, 3, 1, 1, 1, 5, 1, 3, 1, 5, 3, 1, 1, 1, 1, 5, 9, 1, 1, 3, 17, 5, 1, 1, 1, 7, 1, 13, 1, 5, 19, 3, 19, 7, 1, 19, 11, 3, 7, 5, 3, 1, 11, 1
Offset: 1

Views

Author

Gionata Neri, Jul 03 2017

Keywords

Comments

a(A045546(n)) = 1.

Crossrefs

Cf. A002378, A045546, A049711, A161550 (resulting primes).

Programs

  • Maple
    0, seq(n^2 + n - prevprime(n^2+n), n=2..100); # Robert Israel, Jul 03 2017
  • Mathematica
    Table[k = 0; While[! PrimeQ[n^2 + n - k], k++]; k, {n, 85}] (* Michael De Vlieger, Jul 04 2017 *)
  • PARI
    for(n=1,85,k={my(k=0);while(!isprime(n^2+n-k),k++);k;};print1(k", "))

Formula

a(n) = A049711(A002378(n)). - Robert Israel, Jul 03 2017
Showing 1-1 of 1 results.