OFFSET
1,1
COMMENTS
Here prime(n)# denotes the product of the first n primes, A002110(n). This sequence provides numerical evidence that the smallest prime p greater than prime(n)#+1 is a prime distance from prime(n)#; that is, p-prime(n)# is a prime number, as shown in the sequence of Fortunate numbers, A005235. For p-prime(n)# to be a composite number, p would have to be greater than prime(n)#+prime(n)^2, which would imply that a(n)=0.
LINKS
T. D. Noe, Table of n, a(n) for n = 1..100
FORMULA
Limit_{N->infinity} (Sum_{n=1..N} a(n)) / (Sum_{n=1..N} prime(n)) = 1. - Alain Rocchelli, Nov 03 2022
EXAMPLE
For 3, the second prime, 3# is 6 and 3#+3^2 is 15. There are 3 primes between 6 and 15: 7, 11, and 13. Hence a(2)=3.
MATHEMATICA
Table[p=Prime[n]; prod=prod*p; Length[Select[Range[prod+1, prod+p^2-1], PrimeQ]], {n, 50}]
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Mar 12 2010
STATUS
approved