OFFSET
5,1
COMMENTS
In the definition, "prime(n)#" denotes the primorial A002110(n).
This is a table with 7 columns, numbered j=7,6,...,1, in each row.
All terms are a(n)==5 (mod 6). - M. F. Hasler, Feb 13 2013
EXAMPLE
For n = 5, P(5)#/210 = 11,
36*11 - 7 = 389; 389 and 397 consecutive primes with gap of 8.
37*11 - 6 = 401; 401 and 409 consecutive primes with gap of 8.
44*11 - 5 = 479; 479 and 487 consecutive primes with gap of 8.
33*11 - 4 = 359; 359 and 367 consecutive primes with gap of 8.
64*11 - 3 = 701; 701 and 709 consecutive primes with gap of 8.
41*11 - 2 = 449; 449 and 457 consecutive primes with gap of 8.
180*11 - 1 = 1979; 1979 and 1987 consecutive primes with gap of 8.
PROG
(PARI) A098078(n, j)=forstep(p=-j, 1<<99, prod(i=1, n, prime(i))/210, p%6==5 & nextprime(p+2)-p==8 & isprime(p) & return(p)) \\ - M. F. Hasler, Feb 13 2013
CROSSREFS
KEYWORD
nonn,less,tabf
AUTHOR
Pierre CAMI, Sep 13 2004
EXTENSIONS
Edited and corrected a(34) and a(35), following an observation by Charles R Greathouse IV, by M. F. Hasler, Feb 13 2013
STATUS
approved