login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A012619
cosh(arcsinh(x)*tan(x))=1+12/4!*x^4+120/6!*x^6+8400/8!*x^8...
0
1, 0, 12, 120, 8400, 237120, 41126976, 1414288512, 774359589120, -7305842952192, 43904341686828032, -6519096982922602496, 6522454342040400908288, -2519478812073315269099520
OFFSET
0,3
FORMULA
a(n) ~ (-1)^n * sinh(Pi*tanh(1)/2) * tanh(1) * 2^(2*n) * n^(2*n-1) / exp(2*n). - Vaclav Kotesovec, Nov 01 2013
MATHEMATICA
Table[n!*SeriesCoefficient[Cosh[ArcSinh[x]*Tan[x]], {x, 0, n}], {n, 0, 40, 2}] (* Vaclav Kotesovec, Nov 01 2013 *)
With[{nn=30}, Take[CoefficientList[Series[Cosh[ArcSinh[x]Tan[x]], {x, 0, nn}], x] Range[ 0, nn]!, {1, -1, 2}]] (* Harvey P. Dale, Dec 20 2021 *)
CROSSREFS
Sequence in context: A012559 A009164 A012436 * A012563 A301898 A012441
KEYWORD
sign
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
STATUS
approved