OFFSET
1,2
COMMENTS
Notes:
1) Necessarily a(n)=3k+1: a(n)=3k => 100*3k+27= 3*(100k+9), divisible by 3 a(n)= 3k+2 => 100*(3k+2)+13=3*(100k+71), divisible by 3.
2) It is conjectured that sequence is infinite.
3) Each sequence 100*b(n)+13 and 100*c(n)+27 includes an infinite number of primes (because of DIRICHLET's theorem).
4) Analogous sequences for investigation of prime gaps are obvious and useful.
REFERENCES
N. G. Tchudakoff, On the difference between two neighboring prime numbers, Math. Sb. 1, (1936), 799-814.
R. K. Guy, Unsolved problems in number theory
LINKS
A. E. Ingham, On the difference between consecutive primes, Quart. J. Math. Oxford 8 (1937), 255-266.
FORMULA
p(k+1)=100*a(n)+27 and p(k)=100*a(n)+13 where p(k) is the k-th prime => prime gap p(k+1)-p(k)=14.
EXAMPLE
1) 113=P(30) and 127=P(31) => a(1)=1.
2) 1613=P(255) and 1627=P(258) prime too but 1619=P(256), 1621=P(257) => 1613 and 1627 are not consecutive primes.
3) next: 10613=P(1295), 10627 = P(1296) => a(2)=106.
MATHEMATICA
fQ[n_] := PrimeQ[ Range[100 n + 13, 100 n + 27, 2]] == {True, False, False, False, False, False, False, True}; Select[ Range@ 2295, fQ@# &] (* Robert G. Wilson v, Mar 13 2009 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Ulrich Krug (leuchtfeuer37(AT)gmx.de), Mar 11 2009
EXTENSIONS
a(31)-a(46) from Robert G. Wilson v, Mar 13 2009
STATUS
approved