OFFSET
1,1
COMMENTS
Concerning the even more stringent case of 8 consecutive primes: 59069473 is the least prime(j) of 8 consecutives primes prime(k) such that 2*prime(k)+3 are primes for k=j to j+7 and 3203934593 is the next prime with the same property.
EXAMPLE
4827859, 4827863, ..., 4827943 are seven consecutive primes, and the associated seven 9655721, 9655729, ..., 9655889 are also prime numbers. This puts 4827859 into the sequence.
MAPLE
isA023204 := proc(n) isprime(n) and isprime(2*n+3) ; end proc:
isA190583 := proc(n) local q, s ; q := n ; if isA023204(q) then for s from 1 to 6 do q := nextprime(q) ; if not isA023204(q) then return false; end if; end do; return true; else return false; end if; end proc:
p := 2 : for i from 1 do if isA190583(p) then print(p) ; end if; p := nextprime(p) ; end do: # R. J. Mathar, Jun 02 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Pierre CAMI, May 13 2011
STATUS
approved