OFFSET
1,2
COMMENTS
Some of the larger entries may only correspond to probable primes.
EXAMPLE
a(2) = 2 because the product of the first two terms of A014574 - 1, 4 * 6-1 = 23, is prime.
MATHEMATICA
seq = {1}; prod = 4; k = 1; Do[If[AllTrue[6 n + {-1, 1}, PrimeQ], prod *= 6 n; k++; If[PrimeQ[prod - 1], AppendTo[seq, k]]], {n, 1, 5000}]; seq (* Amiram Eldar, Dec 14 2019 *)
PROG
(PARI) {atm(N)=local(t, c); t=1; c=0; forprime(p=2, N, if(isprime(p+2), t*=p+1; c++; if(isprime(t-1), print1(c, ", "))))}
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Jason Earls, Dec 26 2002
EXTENSIONS
a(8)-a(12) from Amiram Eldar, Dec 14 2019
STATUS
approved