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!)
A193990 Number of distinct prime factors <= n of binomial(2*n,n). 3
0, 1, 1, 1, 2, 2, 2, 3, 2, 1, 3, 2, 3, 3, 3, 3, 4, 5, 5, 6, 5, 4, 4, 4, 4, 4, 3, 5, 7, 5, 5, 6, 7, 6, 6, 5, 5, 6, 5, 5, 6, 6, 7, 7, 7, 7, 8, 9, 8, 8, 7, 6, 8, 8, 6, 6, 5, 6, 7, 8, 9, 9, 9, 9, 9, 9, 11, 10, 9, 8, 9, 10, 11, 11, 11, 10, 11, 11, 11, 12, 12, 11 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
MAPLE
a := n -> nops(numtheory:-factorset(binomial(2*n, n)) minus select(isprime, {$n+1..2*n})): seq(a(n), n=1..82); # Peter Luschny, Oct 31 2015
MATHEMATICA
Table[Length[Select[Transpose[FactorInteger[Binomial[2 n, n]]][[1]], # <= n &]], {n, 100}]
PROG
(PARI) valp(n, p)=my(s); while(n\=p, s+=n); s
a(n)=my(s); forprime(p=2, n, if(valp(2*n, p)>2*valp(n, p), s++)); s \\ Charles R Greathouse IV, May 25 2013
CROSSREFS
Cf. A067434 (number of prime factors in binomial(2*n,n)), A108954.
Sequence in context: A365722 A071137 A333253 * A089367 A130192 A175064
KEYWORD
nonn
AUTHOR
T. D. Noe, Aug 17 2011
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 April 29 12:47 EDT 2024. Contains 372114 sequences. (Running on oeis4.)