OFFSET
1,2
COMMENTS
No others for n <= 36000. - Naohiro Nomoto, May 11 2002
No others for n <= 200000. - T. D. Noe, May 22 2002
No others for n <= 10^6. - T. D. Noe, Nov 29 2003
No others for n < 10^8. It is conjectured that there are no other n with this property. - T. D. Noe, Dec 23 2004
EXAMPLE
6 is in the sequence because binomial(12,6) = 924, whose prime factors are 2, 3, 7 and 11. None of these primes, added pairwise, yield 12.
MATHEMATICA
minN=1; maxN=100000; lst={}; isPrime=Table[If[PrimeQ[i], True, False], {i, 2maxN}]; c=Binomial[2minN-2, minN-1]; For[n=minN, n<=maxN, n++, c=(c(4n-2))/n; (* Binomial[2n, n] *) found=False; k=3; While[ !found&&k<=n, If[isPrime[[k]]&&isPrime[[2n-k]], If[Mod[c, k]==0, found=True]]; k=k+2]; If[ !found, AppendTo[lst, n]]]; lst
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, May 02 2002
STATUS
approved