login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A070542 Numbers n such that binomial(2n,n) does not have two prime factors that add to 2n. 1
1, 2, 3, 4, 6, 10, 15, 26, 28, 64 (list; graph; refs; listen; history; text; internal format)
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
LINKS
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
Sequence in context: A221995 A364587 A221996 * A098855 A143283 A104767
KEYWORD
nonn
AUTHOR
T. D. Noe, May 02 2002
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 26 13:14 EDT 2024. Contains 374635 sequences. (Running on oeis4.)