OFFSET
1,3
COMMENTS
Conjecture: a(n) > 0 for all n > 0. Moreover, for any integer m > 10 every positive integer can be written as the sum of two distinct elements of the set {floor(x/m): x-1 and x+1 are twin prime}.
Clearly, the conjecture implies the Twin Prime Conjecture.
LINKS
Zhi-Wei Sun, Table of n, a(n) for n = 1..10000
Zhi-Wei Sun, Natural numbers represented by floor(x^2/a) + floor(y^2/b) + floor(z^2/c), arXiv:1504.01608 [math.NT], 2015.
EXAMPLE
a(44) = 1 since 44 = 6 + 38 = floor(20/3) + floor(116/3) with {3*20-1,3*20+1} = {59,61} and {3*116-1,3*116+1} = {347,349} twin prime pairs.
a(108) = 1 since 108 = 16 + 92 = floor(50/3) + floor(276/3) with {3*50-1,3*50+1} = {149,151} and {3*276-1,3*276+1} = {827,829} twin prime pairs.
MATHEMATICA
TQ[n_]:=PrimeQ[3n-1]&&PrimeQ[3n+1]
PQ[n_]:=TQ[3*n]||TQ[3*n+1]||TQ[3n+2]
Do[m=0; Do[If[PQ[x]&&PQ[n-x], m=m+1], {x, 0, (n-1)/2}];
Print[n, " ", m]; Label[aa]; Continue, {n, 1, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, Apr 24 2015
STATUS
approved