OFFSET
1,1
COMMENTS
A013916 except for the first term, 1, is a proper subset.
The odd terms are: 3, 5, 7, 11, 15, 19, 21, 27, 35, 55, 59, 65, 75, 81, 83, ..., .
The 10^k-th term: 2, 15, 469, 7980, 110374, 1359497, 16214466, 187663922, ..., .
LINKS
Robert G. Wilson v, Table of n, a(n) for n = 1..10000
EXAMPLE
11 is in the sequence since the sum of the first 11 primes is A007504(11) = 160 and 160 is divisible by 2^5 which gives 5, a prime.
MATHEMATICA
fQ[n_] := Block[{s = Sum[ Prime@ k, {k, n}]}, PrimeQ[s/2^IntegerExponent[s, 2]]]; Select[Range@300, fQ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jan 04 2017
STATUS
approved