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-2 of 2 results.

A081399 Bigomega of the n-th Catalan number: a(n) = A001222(A000108(n)).

Original entry on oeis.org

0, 0, 1, 1, 2, 3, 4, 3, 4, 4, 5, 5, 6, 7, 9, 7, 8, 8, 10, 9, 10, 10, 11, 11, 11, 12, 12, 11, 13, 13, 14, 11, 13, 14, 14, 13, 14, 14, 16, 15, 16, 18, 19, 19, 19, 19, 21, 19, 20, 19, 21, 20, 21, 21, 21, 19, 20, 20, 22, 22, 24, 25, 25, 23, 23, 23, 24, 24, 27, 26, 27, 25, 27, 28, 29, 28
Offset: 0

Views

Author

Labos Elemer, Mar 28 2003

Keywords

Comments

It is easy to show that a(n) is between n/log(n) and 2n/log(n) (for n>n0), cf. [Campbell 1984]. The sequence A137687, roughly the middle of this interval, is a fair approximation for A081399. See A137686 for the (signed) difference of the two sequences.

Crossrefs

Programs

  • Maple
    with(numtheory):a:=proc(n) if n=0 then 0 else bigomega(binomial(2*n,n)/(1+n)) fi end: seq(a(n), n=0..75); # Zerinvary Lajos, Apr 11 2008
  • Mathematica
    a[n_] := PrimeOmega[ CatalanNumber[n]]; Table[a[n], {n, 0, 75}] (* Jean-François Alcover, Jul 02 2013 *)
  • PARI
    A081399(n)=bigomega(prod(i=2,n,(n+i)/i)) \\ M. F. Hasler, Feb 06 2008

Formula

a(n)=A001222[A000108(n)]

Extensions

Edited and extended by M. F. Hasler, Feb 06 2008

A048622 Difference of maximal and central values of A001222 when applied to {C(n,k)} set.

Original entry on oeis.org

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

Views

Author

Keywords

Examples

			n=24: the sums of prime factor exponents when k runs from 0 to 24 are {0,4,4,5,5,7,6,8,6,8,8,9,7,9,8,8,6,8,6,7,5,5,4,4,0}. The central value is 7, the maximal is 9 so a(24)=9-7.
		

Crossrefs

Programs

  • PARI
    a(n) = vecmax(apply(bigomega, vector(n+1, k, binomial(n,k-1)))) - bigomega(binomial(n, n\2)); \\ Michel Marcus, Jun 25 2021

Formula

a(n) = Max_k {A001222(C(n, k))} - A001222(A001405(n)).
a(n) = A048620(n) - A048621(n). - Sean A. Irvine, Jun 24 2021
Showing 1-2 of 2 results.