OFFSET
1,6
COMMENTS
Conjecture: (i) a(n) > 0 for all n > 3.
(ii) For any integer n > 1, there is a positive integer k < n such that p(k)*2^(phi(n-k)) + 1 is prime.
(iii) For any integer n > 1 not among 6, 23, 42, there is a positive integer k < n such that 2*p(k) + p(n-k) is prime.
Clearly, part (i) of the conjecture implies that there are infinitely many primes of the form p(k) + 2^m, where k and m are positive integers.
LINKS
Zhi-Wei Sun, Table of n, a(n) for n = 1..10000
Z.-W. Sun, Problems on combinatorial properties of primes, arXiv:1402.6641, 2014
EXAMPLE
a(14) = 1 since p(7) + 2^(phi(7)/2) = 15 + 2^3 = 23 is prime.
MATHEMATICA
a[n_]:=Sum[If[PrimeQ[PartitionsP[k]+2^(EulerPhi[n-k]/2)], 1, 0], {k, 1, n-3}]
Table[a[n], {n, 1, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, Jan 27 2014
STATUS
approved