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.

A196660 Smallest k>0 such that k*n+(n-1) is prime.

Original entry on oeis.org

2, 1, 1, 1, 3, 1, 1, 2, 1, 1, 3, 1, 7, 2, 1, 1, 3, 2, 1, 2, 1, 1, 5, 1, 5, 3, 1, 2, 5, 1, 1, 3, 3, 1, 3, 1, 1, 2, 5, 1, 3, 1, 5, 2, 1, 2, 5, 3, 1, 2, 1, 1, 3, 1, 1, 2, 1, 2, 5, 2, 7, 6, 3, 1, 5, 1, 5, 3, 1, 1, 3, 4, 13, 5, 1, 1, 3, 2, 1, 2, 7, 1, 3, 1, 5, 2, 1, 2, 15
Offset: 1

Views

Author

Frank M Jackson, Oct 05 2011

Keywords

Comments

Conjecture: for every n there exists k < n (apart from a(1)) such that k*n+(n-1) is prime. See A034693.

Examples

			If n=13, the smallest prime in the sequence 25,38,51,64,77,90,103,... is 103, so a(13)=7.
		

Crossrefs

Programs

  • Mathematica
    q[n_]:=(k=0; While[!PrimeQ[++k*n+n-1]]; k); Table[q[n],{n,1,100}]
  • PARI
    a(n) = my(k=1); while (!isprime(k*n+(n-1)), k++); k; \\ Michel Marcus, Mar 18 2025