OFFSET
1,5
COMMENTS
Conjecture: (i) a(n) > 0 for all n > 3. Also, any integer n > 2 can be written as k + m (0 < k <= m) with 2^k*prime(m) - 3 prime.
(ii) Any integer n > 6 can be written as k + m (0 < k < m) with prime(k) + 6 and prime(m) + 6 both prime. Each integer n > 4 can be written as k + m (0 < k < m) with prime(k) + 2 and prime(m) + 6 both prime. Also, for every integer n > 3 not among 11, 21, 32, 49, 171, there is a positive integer k < n with prime(k) + 2 and prime(n-k) + 2 both prime.
LINKS
Zhi-Wei Sun, Table of n, a(n) for n = 1..8000
Z.-W. Sun, Problems on combinatorial properties of primes, arXiv:1402.6641, 2014
MAPLE
a(6) = 1 since 6 = 2 + 4 with 2^2*prime(4) + 3 = 4*7 + 3 = 31 prime.
a(22) = 1 since 22 = 1 + 21 with 2^1*prime(21) + 3 = 2*73 + 3 = 149 prime.
MATHEMATICA
a[n_]:=Sum[If[PrimeQ[2^k*Prime[n-k]+3], 1, 0], {k, 1, (n-1)/2}]
Table[a[n], {n, 1, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, Dec 05 2013
STATUS
approved