cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-6 of 6 results.

A081387 Number of non-unitary prime divisors of central binomial coefficient, C(2n,n) = A000984(n), i.e., number of prime factors in C(2n,n) whose exponent is greater than one.

Original entry on oeis.org

0, 0, 1, 0, 2, 1, 1, 1, 1, 1, 1, 1, 2, 3, 2, 1, 2, 2, 2, 2, 1, 1, 3, 3, 3, 3, 2, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 2, 3, 2, 3, 2, 3, 3, 2, 3, 3, 4, 3, 2, 2, 2, 2, 1, 1, 2, 1, 1, 2, 2, 3, 3, 3, 2, 4, 2, 2, 3, 3, 3, 3, 4, 4, 5, 4, 4, 2, 3, 3, 2, 2, 2, 4, 3, 3, 4, 3, 4, 5, 4, 2, 2, 2, 3, 5, 5, 5, 5, 3, 2, 3, 2, 3, 3, 3
Offset: 1

Views

Author

Labos Elemer, Mar 27 2003

Keywords

Examples

			For n = 14: binomial(28,14) = 40116600 = 2*2*2*3*3*3*5*5*17*19*23; unitary prime divisors: {17,19,23}; non-unitary prime divisors: {2,3,5}, so a(14) = 3.
		

Crossrefs

Programs

Formula

a(n) = A056170(A000984(n)) = A001221(A000984(n)) - A081386(n) = A067434(n) - A081386(n).

A081386 Number of unitary prime divisors of central binomial coefficient, C(2n,n) = A000984(n), i.e., number of those prime factors in C(2n,n), whose exponent equals one.

Original entry on oeis.org

1, 2, 1, 3, 1, 3, 3, 4, 4, 4, 5, 5, 4, 3, 5, 7, 6, 7, 7, 8, 9, 9, 6, 7, 7, 7, 8, 11, 12, 11, 11, 11, 12, 12, 12, 13, 13, 13, 11, 13, 12, 14, 13, 13, 15, 14, 14, 14, 15, 16, 16, 16, 17, 19, 18, 17, 18, 19, 18, 19, 18, 18, 18, 20, 18, 21, 22, 20, 20, 20, 20, 20, 20, 19, 21, 21, 24, 23
Offset: 1

Views

Author

Labos Elemer, Mar 27 2003

Keywords

Examples

			n=10: C(20,10) = 184756 = 2*2*11*13*17*19; unitary-p-divisors = {11,13,17,19}, so a(10)=4.
		

Crossrefs

Programs

  • Mathematica
    Table[Function[m, Count[Divisors@ m, k_ /; And[PrimeQ@ k, GCD[k, m/k] == 1]]]@ Binomial[2 n, n], {n, 50}] (* Michael De Vlieger, Dec 17 2016 *)
  • PARI
    a(n) = my(f=factor(binomial(2*n, n))); sum(k=1, #f~, f[k,2] == 1); \\ Michel Marcus, Dec 18 2016

Formula

a(n) = A056169(A000984(n)).

A081388 Number of unitary prime divisors of the n-th Catalan number.

Original entry on oeis.org

0, 1, 1, 2, 3, 2, 3, 4, 4, 3, 5, 4, 3, 4, 5, 6, 8, 6, 9, 8, 8, 8, 7, 7, 6, 7, 9, 10, 10, 10, 11, 11, 12, 12, 13, 12, 12, 11, 13, 12, 13, 13, 12, 14, 14, 13, 15, 14, 15, 15, 15, 15, 18, 17, 17, 17, 17, 18, 17, 18, 17, 18, 18, 19, 21, 20, 22, 19, 19, 19, 21, 19, 19, 20, 20, 23, 23, 22
Offset: 1

Views

Author

Labos Elemer, Mar 27 2003

Keywords

Examples

			For n = 10: Catalan(10) = 16796 = 2^2*13*17*19, the unitary prime divisors are {13, 17, 19}, so a(10) = 3.
		

Crossrefs

Programs

  • Mathematica
    a[n_] := Count[FactorInteger[CatalanNumber[n]][[;;, 2]], 1]; a[1] = 0; Array[a, 100] (* Amiram Eldar, Aug 16 2024 *)
  • PARI
    nbupd(n) = my(f=factor(n)[, 2]); sum(i=1, #f, f[i]==1);
    a(n) = nbupd(binomial(2*n, n)/(n+1)); \\ Michel Marcus, Sep 05 2017

Formula

a(n) = A056169(A000108(n)).

A081391 Numbers k such that the central binomial coefficient C(2*k,k) has only one prime divisor whose exponent equals one.

Original entry on oeis.org

3, 6, 7, 8, 9, 10, 11, 12, 16, 21, 22, 28, 29, 30, 31, 36, 37, 54, 55, 57, 58, 110, 171, 784, 786
Offset: 1

Views

Author

Labos Elemer, Mar 27 2003

Keywords

Comments

Numbers k such that C(2*k,k) has one non-unitary prime divisor.
Numbers k for which A081387(k) = 1.
No more terms through 10^6; conjecture: no terms after 786. - Jon E. Schoenfield, Jul 29 2017

Examples

			For k = 786, C(1572,786) = 2*2*2*2*m, where m is a squarefree product of 169 primes.
		

Crossrefs

Programs

A081395 a(n) is the smallest value of k such that number of non-unitary prime divisors of k-th Catalan number, A000108(k) = C(2*k,k)/(k+1) equals n.

Original entry on oeis.org

1, 6, 13, 25, 72, 96, 182, 320, 481, 923, 1018, 1321, 1323, 1670, 3457, 3455, 3472, 3464, 3462, 3469, 8222, 9991, 12163, 15838, 17665, 18313, 18480, 19458, 19464, 29708, 36787, 36796, 36789, 40048, 43603, 47210, 47521, 61653, 61675, 80722, 87117, 87120, 92958, 93181, 93186, 93187
Offset: 0

Views

Author

Labos Elemer, Mar 27 2003

Keywords

Examples

			n=6: a(6)=182, C(364,182)/183 has 6 non-unitary prime divisors: {2,3,7,11,17,19} and 182 is the smallest.
		

Crossrefs

Programs

Formula

a(n) = Min{k; A081389(k) = n}.

Extensions

a(11)-a(21) from Michel Marcus, Sep 01 2019
a(22)-a(45) from Amiram Eldar, May 15 2023

A081390 Number k such that the k-th Catalan number has only one non-unitary prime divisor; all the other prime divisors have exponent one.

Original entry on oeis.org

6, 10, 12, 15, 16, 20, 21, 22, 27, 28, 29, 30, 32, 33, 34, 36, 37, 39, 53, 54, 55, 56, 57, 58, 65, 67, 79, 80, 109, 110, 129, 135, 159, 161, 170, 171, 255, 783, 784, 785, 786, 902
Offset: 1

Views

Author

Labos Elemer, Mar 27 2003

Keywords

Comments

a(43) > 25000, if it exists. - Amiram Eldar, Jul 22 2024

Examples

			902 is a term because binomial(1804,902)/903 has 189 prime factor, 188 stand with exponent one, but 2 with 5: 2^5.
		

Crossrefs

Programs

Showing 1-6 of 6 results.