OFFSET
1,2
COMMENTS
There are 8 values of a(n) < 1000 although A045345 has 4 values A045345(n) < 1000. How do these sequences compare asymptotically?
Heuristics suggest that the ratio of the number of terms in each sequence up to x should approach 1 as x increases without bound. In the Cramér model, log a(n) and log A045345(n) are Erlang-distributed with shape n and rate 1. - Charles R Greathouse IV, Oct 20 2015
EXAMPLE
1 is in the sequence because prime(prime(1)) = 3 is divisible by 1.
2 is in the sequence because prime(prime(1)) + prime(prime(2)) = 3 + 5 = 8 is divisible by 2.
PROG
(PARI) list(lim)=my(v=List(), k, s, t); forprime(p=2, , if(isprime(t++), s+=p; k++; if(s%k==0, listput(v, k)); if(k>=lim, return(Vec(v))))) \\ Charles R Greathouse IV, Oct 20 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Altug Alkan, Oct 20 2015
EXTENSIONS
a(12)-a(26) from Charles R Greathouse IV, Oct 20 2015
a(27) from Charles R Greathouse IV, Oct 21 2015
STATUS
approved