OFFSET
1,1
REFERENCES
Bronstein-Semendjajew, sprawotchnik po matematikje, 6th Russian ed. 1956, ch. 4.2.6.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Eric Weisstein's World of Mathematics, Inverse Hyperbolic Cosecant
Eric Weisstein's World of Mathematics, Inverse Hyperbolic Cosine
Eric Weisstein's World of Mathematics, Inverse Hyperbolic Sine
FORMULA
EXAMPLE
arccosh(x) = log(2x) - 1/(4*x^2) - 3/(32*x^4) - 5/(96*x^6) - ... for x>1.
MATHEMATICA
a[n_] := Denominator[(2*n-1)!/(2^(2*n)*n!^2)]; Array[a, 21] (* Jean-François Alcover, May 17 2017 *)
PROG
(Magma) [Denominator(Factorial(2*n-1)/( 2^(2*n)* Factorial(n)^2)): n in [1..30]]; // Vincenzo Librandi, Jul 10 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
(GAP) List([1..30], n-> DenominatorRat( Factorial(2*n-1)/(4^n*(Factorial(n))^2) )) # G. C. Greubel, May 18 2019
CROSSREFS
KEYWORD
nonn,easy,frac
AUTHOR
EXTENSIONS
Updated by Frank Ellermann, May 22 2001
STATUS
approved