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!)
A059097 Numbers n such that the binomial coefficient C(2n,n) is not divisible by the square of an odd prime. 6

%I #23 Sep 18 2017 05:03:36

%S 0,1,2,3,4,6,7,9,10,11,12,21,22,28,29,30,31,36,37,54,55,57,58,110,171,

%T 784,786

%N Numbers n such that the binomial coefficient C(2n,n) is not divisible by the square of an odd prime.

%C Probably finite. Erdős believed there were no more terms.

%C The power of p that divides n! is (n-s)/(p-1), where s is the sum of the "digits" in the base-p representation of n (see Gouvea). - _N. J. A. Sloane_, Nov 26 2005

%C From _David W. Wilson_, Nov 21 2005: (Start)

%C "The exponent e of prime p in n! can be computed as follows (in pseudo-C):

%C int e(int p, int n) { int s = 0; while (n > 0) { n /= p; s += n; } return s; }

%C The exponent of p in C(2n, n) is then f(p, n) = e(p, 2*n) - 2*e(p, n).

%C We can then use the following function to check if n is in the sequence:

%C bool isGood(int n) { for (int p = 3; p <= n; p += 2) { if (!isPrime(p)) continue; if (f(p, n) >= 2) return false; } return true; }" (End)

%C There are no more terms: Granville and Ramaré show that if n >= 2082 then C(2n,n) is divisible by the square of a prime >= sqrt(n/5). - _Robert Israel_, Sep 18 2017

%D F. Q. Gouvea, p-Adic Numbers, Springer-Verlag, 1993; see p. 100.

%D R. L. Graham, D. E. Knuth and O. Patashnik, Concrete Mathematics, first ed, chap 5, prob 96.

%D R. K. Guy, Unsolved problems in Number Theory, section B33.

%H A. Granville and O. Ramaré, <a href="http://www.dms.umontreal.ca/~andrew/PDF/ramare.pdf">Explicit bounds on exponential sums and the scarcity of squarefree binomial coefficients</a>, Mathematika 43 (1996), 73-107, <a href="http://dx.doi.org/10.1112/S0025579300011608">[DOI]</a>.

%e C(12,6)=924, which is not divisible by the square of an odd prime, so 6 is in the sequence.

%p filter:= proc(n)

%p andmap(t -> t[1] = 2 or t[2] = 1, ifactors(binomial(2*n,n))[2]) end proc:

%p select(filter, [$0..2081]); # _Robert Israel_, Sep 18 2017

%t l = {}; Do[m = Binomial[2n, n]; While[EvenQ[m], m = m/2]; If[MoebiusMu[m] != 0, l = {l, n}], {n, 1000}]; Flatten[l] (* _Alonso del Arte_, Nov 11 2005 *)

%t (* The following is an implementation of _David W. Wilson_'s algorithm: *)

%t expoPF[p_, n_] := Module[{s, x}, x = n; s = 0; While[x > 0, x = Floor[x/p]; s = s + x]; s]

%t expoP2nCn[p_, n_] := expoPF[p, 2*n] - 2*expoPF[p, n]

%t goodQ[ n_ ] := TrueQ[ Module[ {flag, i}, flag = True; i = 2; While[ flag && Prime[ i ] < n, If[ expoP2nCn[ Prime[ i ], n ] > 1, flag = False ]; i++ ]; flag ] ]

%t Select[ Range[ 1000 ], goodQ[ # ] & ] (* _Alonso del Arte_, Nov 11 2005 *)

%Y Cf. A000984. Cf. also A081391, n such that C[2n, n] has only one prime divisor of which exponent equals one.

%K nonn,fini,full

%O 1,3

%A _Jud McCranie_, Jan 01 2001

%E No other terms for n<=157430. - _Naohiro Nomoto_, May 12 2002

%E No other terms for n<=2^31 - 1. - _Jack Brennen_, Nov 21 2005

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 April 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)