OFFSET
1,7
COMMENTS
Conjecture: (i) a(n) > 0 for all n > 5, and a(n) = 1 only for n = 6, 23, 24, 111, 112, ..., 120.
(ii) For any integer n > 2, there is a prime p < n with floor(sqrt(n+p)) prime.
Note that floor(sqrt(n)) is the number of squares among 1, ..., n.
LINKS
Zhi-Wei Sun, Table of n, a(n) for n = 1..10000
EXAMPLE
a(6) = 1 since 2 and floor(sqrt(6-2)) = 2 are both prime.
a(23) = 1 since 11 and floor(sqrt(23-11)) = 3 are both prime.
a(24) = 1 since 11 and floor(sqrt(24-11)) = 3 are both prime.
a(27) = 2 since 2 and floor(sqrt(27-2)) = 5 are both prime, and 13 and floor(sqrt(27-13)) = 3 are both prime.
a(n) = 1 for n = 111, ..., 116 since 53 and floor(sqrt(n-53)) = 7 are both prime.
a(n) = 1 for n = 117, 118, 119, 120 since 59 and floor(sqrt(n-59)) = 7 are both prime.
MATHEMATICA
q[n_]:=PrimeQ[Floor[Sqrt[n]]]
a[n_]:=Sum[If[q[n-Prime[k]], 1, 0], {k, 1, PrimePi[(n+1)/2]}]
Table[a[n], {n, 1, 70}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, Feb 12 2014
STATUS
approved