OFFSET
1,3
COMMENTS
p(k) is k-th prime; p(n)# is n-th primorial, A002110(n). For the larger n, these are only counts of highly probable primes. Of the first 500 terms, the maximum occurs once, a(172)=8; the mode is 2, occurring 135 times.
LINKS
Rick L. Shepherd, Table of n, a(n) for n = 1..500
EXAMPLE
a(3)=2 because p(3)#=A002110(3)=30 and 30/3+1=11 and 30/5+1=7 are both prime and there are no other primes of this form.
MATHEMATICA
a[n_] := (p = Product[Prime[k], {k, 1, n}]; Sum[Boole[PrimeQ[p/Prime[k] + 1]], {k, 1, n}]); Array[a, 105] (* Jean-François Alcover, Nov 02 2017, translated from PARI *)
PROG
(PARI) a(n)= p=prod(k=1, n, prime(k)); sum(k=1, n, isprime(p/prime(k)+1))
CROSSREFS
KEYWORD
nonn
AUTHOR
Rick L. Shepherd, Nov 30 2007
STATUS
approved