login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A246826
Numbers n such that there is no prime of a prime twin pair between n^2 + n and n^2 + 3*n + 2.
0
0, 10, 26, 30, 36, 136, 156, 433
OFFSET
1,2
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
EXAMPLE
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.
PROG
(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
CROSSREFS
Sequence in context: A259297 A358774 A046961 * A125035 A337049 A067264
KEYWORD
nonn
AUTHOR
Pierre CAMI, Sep 04 2014
STATUS
approved