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.

A246826 Numbers n such that there is no prime of a prime twin pair between n^2 + n and n^2 + 3*n + 2.

Original entry on oeis.org

0, 10, 26, 30, 36, 136, 156, 433
Offset: 1

Views

Author

Pierre CAMI, Sep 04 2014

Keywords

Comments

No more values for n = 434 to 45140.
Conjecture: the sequence is finite and given in full.
a(9), if it exists, is greater than 10^5. - Derek Orr, Sep 19 2014

Examples

			n = 0 only 1 between 0 and 2 so a(1) = 0.
n = 1 between 2 and 6, 3 is the first of twin pair 3, 5.
For n = 2 to 9 always at least one prime of a twin pair between n^2 + n and n^2 + 3*n + 2.
n = 10 no prime of a twin pair between 110 and 132 so a(2) = 10.
		

Crossrefs

Programs

  • PARI
    a(n)=forprime(p=n^2+n,n^2+3*n+2,if(precprime(p-1)==p-2||nextprime(p+1)==p+2,return(0)));return(1)
    n=0;while(n<10^5,if(a(n),print1(n,", "));n++) \\ Derek Orr, Sep 19 2014