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!)
A056173 Number of unitary prime divisors of central binomial coefficient C(n, floor(n/2)) (A001405). 4
0, 1, 1, 2, 2, 1, 2, 3, 2, 1, 4, 3, 3, 3, 3, 4, 5, 4, 5, 4, 5, 5, 6, 5, 4, 4, 3, 3, 5, 5, 6, 7, 7, 6, 8, 7, 7, 7, 9, 8, 9, 9, 9, 9, 6, 6, 8, 7, 7, 7, 7, 7, 8, 8, 11, 11, 12, 12, 11, 11, 11, 11, 10, 11, 13, 12, 13, 12, 12, 12, 14, 13, 13, 13, 13, 13, 11, 11, 14, 13, 12, 12, 14, 14, 13, 13, 13 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
A prime divisor is unitary iff its exponent equals 1.
LINKS
FORMULA
a(n) = A056169(A001405(n)). - Michel Marcus, Oct 27 2017 [corrected by Amiram Eldar, Jul 22 2024]
EXAMPLE
For n = 10: binomial(10,5) = 252 = 2*2*3*3*7 has 3 prime factors of which only one, p = 7, is unitary. So a(10) = 1.
MATHEMATICA
Array[Function[k, Count[FactorInteger[k][[All, 1]], _?(CoprimeQ[#, k/#] &)]]@ Binomial[#, Floor[#/2]] &, 87] (* Michael De Vlieger, Oct 26 2017 *)
PROG
(PARI) a(n) = vecsum(apply(x -> if(x > 1, 0, 1), factor(binomial(n, n\2))[, 2])); \\ Amiram Eldar, Jul 22 2024
CROSSREFS
Sequence in context: A046923 A184703 A309287 * A216817 A263765 A335424
KEYWORD
nonn,changed
AUTHOR
Labos Elemer, Jul 27 2000
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 30 13:38 EDT 2024. Contains 374743 sequences. (Running on oeis4.)