The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A335209 Numbers k such that binomial(2*k,k) has more distinct prime factors than binomial(2*k,i) for 0 <= i < k. 1

%I #18 Jun 26 2021 18:03:59

%S 1,2,4,6,8,20,32,54,66,110,144,170,200,210,278,288,304,330,402,405,

%T 468,510,527,628,654,684,704,778,783,784,853,891,892,990,1001,1035,

%U 1125,1155,1232,1296,1334,1384,1394,1488,1495,1521,1551,1575,1600,1625,1645,1701,1768,1875,1891,2028,2072

%N Numbers k such that binomial(2*k,k) has more distinct prime factors than binomial(2*k,i) for 0 <= i < k.

%C Numbers k such that A020733(2*k) = 1.

%H Robert Israel, <a href="/A335209/b335209.txt">Table of n, a(n) for n = 1..250</a>

%e a(4)=6 is in the sequence because binomial(12,6) = 924 = 2^2*3*7*11 has 4 distinct prime factors while binomial(12,0) to binomial(12,5) all have at most 3.

%e 7 is not in the sequence because binomial(14,7) = 3432 = 2^3*3*11*13 and binomial(14,6) = 3003 = 3*7*11*13 both have 4 distinct prime factors.

%p filter:= proc(n) local t, v, i, m;

%p m:= 0: t:= 1:

%p for i from 1 to n-1 do

%p t:= t * ifactor(2*n-i+1)/ifactor(i);

%p if type(t,`*`) then v:= nops(t) else v:= 1 fi;

%p if v > m then m:= v fi;

%p od;

%p t:= t*ifactor(n+1)/ifactor(n);

%p type(t,`*`) and nops(t) > m

%p end proc:

%p filter(1):= true:

%p select(filter, [$1..2500]); # _Robert Israel_, May 26 2020

%t Select[Range@ 1001, Max@ Most@ # < Last@ # &@ PrimeNu@ Binomial[2 #, Range[0, #]] &] (* _Michael De Vlieger_, May 26 2020 *)

%Y Cf. A001221, A020733, A067434.

%K nonn

%O 1,2

%A _Robert Israel_, May 26 2020

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 May 13 20:33 EDT 2024. Contains 372522 sequences. (Running on oeis4.)