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

A052469 Denominators in the Taylor series for arccosh(x) - log(2*x).

Original entry on oeis.org

4, 32, 96, 1024, 2560, 4096, 28672, 524288, 1179648, 5242880, 11534336, 100663296, 218103808, 939524096, 134217728, 68719476736, 146028888064, 206158430208, 1305670057984, 2199023255552, 7696581394432, 96757023244288, 202310139510784, 1125899906842624
Offset: 1

Views

Author

Keywords

Examples

			arccosh(x) = log(2x) - 1/(4*x^2) - 3/(32*x^4) - 5/(96*x^6) - ... for x>1.
		

References

  • Bronstein-Semendjajew, sprawotchnik po matematikje, 6th Russian ed. 1956, ch. 4.2.6.

Crossrefs

Cf. A002595.

Programs

  • GAP
    List([1..30], n-> DenominatorRat( Factorial(2*n-1)/(4^n*(Factorial(n))^2) )) # G. C. Greubel, May 18 2019
  • Magma
    [Denominator(Factorial(2*n-1)/( 2^(2*n)* Factorial(n)^2)): n in [1..30]]; // Vincenzo Librandi, Jul 10 2017
    
  • Mathematica
    a[n_] := Denominator[(2*n-1)!/(2^(2*n)*n!^2)]; Array[a, 21] (* Jean-François Alcover, May 17 2017 *)
  • PARI
    {a(n) = denominator((2*n-1)!/(4^n*(n!)^2))}; \\ G. C. Greubel, May 18 2019
    
  • Sage
    [denominator(factorial(2*n-1)/(4^n*(factorial(n))^2)) for n in (1..30)] # G. C. Greubel, May 18 2019
    

Formula

A052468(n) / a(n) = A001147(n) / ( A000165(n) *2*n )
From Johannes W. Meijer, Jul 06 2009: (Start)
a(n) = denom((2*n-1)!/( 4^n * (n!)^2)).
Equals 2*A162442(n+1) for n >= 1.
A052468(n)/a(n) = (1/(2*n))*A001790(n)/A046161(n) for n>=1.
(End)

Extensions

Updated by Frank Ellermann, May 22 2001

A162441 Numerators of the column sums of the EG1 matrix coefficients.

Original entry on oeis.org

3, 15, 35, 315, 693, 1001, 6435, 109395, 230945, 969969, 2028117, 16900975, 35102025, 145422675, 20036013, 9917826435, 20419054425, 27981667175, 172308161025, 282585384081, 964378691705, 11835556670925, 24185702762325
Offset: 2

Views

Author

Johannes W. Meijer, Jul 06 2009

Keywords

Comments

For the definition of the EG1 matrix coefficients see A162440.
We define the columns sums by cs(n) = sum(EG1[2*m-1,n], m = 1.. infinity) for n => 2.
The row sums of the EG1 matrix follow the same pattern as those of its even counterpart the EG2 matrix, see A161739 and the formulas.

Crossrefs

Equals (2*n-1)*A052468(n-1)
Cf. A162440 and A162442 [denom(cs(n))].
Cf. A161739 (RSEG2 triangle), A001803 and A046161.

Formula

a(n) = numer(cs(n)) and denom(cs(n)) = A162442(n) with cs(n) = (2^(2-2*n)/(n-1))*((2*n-1)!/((n-1)!^2)).
cs(n) = 2*EG1[ -1,n]/(n-1) with EG1[ -1,n] = 2^(1-2*n)*(2*n-1)!/((n-1)!^2).
cs(n) = (1/(n-1))*A001803(n-1)/A046161(n-1) for n=>2.
rs(2*m-1,p=0) = sum((n^p)*EG1(2*m-1,n), n = 1..infinity) = 2*zeta(2*m-2) for m =>2.

A259853 Denominators of the terms of Lehmer's series S_2(2), where S_k(x) = Sum_{n>=1} n^k*x^n/binomial(2*n, n).

Original entry on oeis.org

1, 3, 5, 35, 63, 77, 429, 6435, 12155, 46189, 88179, 676039, 1300075, 5014575, 215441, 300540195, 583401555, 756261275, 4418157975, 6892326441, 22427411435, 263012370465, 514589420475, 895766768975, 15801325804719, 61989816618513, 121683714103007
Offset: 1

Views

Author

Jean-François Alcover, Jul 07 2015

Keywords

Comments

The first 14 terms are identical to A052468.

Examples

			1/1, 8/3, 18/5, 128/35, 200/63, 192/77, 784/429, ... = A259852/A259853.
		

Crossrefs

Cf. A014307, A052468, A180875, A259852 (numerators).

Programs

  • Mathematica
    Table[2^n*n^2/Binomial[2*n, n] // Denominator, {n, 1, 40}]
  • PARI
    vector(40, n, denominator(n^2*2^n/binomial(2*n,n))) \\ Michel Marcus, Jul 07 2015

Formula

a(n) = denominator(n^2*2^n/C(2*n,n)).
Showing 1-3 of 3 results.