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”).

A012548
Expansion of e.g.f. arctan(sinh(x)*tan(x)) (even powers only).
0
0, 2, 12, -98, -16968, -780838, 93371652, 31402903222, 2306688997872, -1741952370835918, -849143623135762308, -14075683397521166258, 228742196475611564627112, 136676421833398225367464202, -34106209758743782233592937868, -128144470665734286260829913072538
OFFSET
0,2
EXAMPLE
0/0!*x^0 + 2/2!*x^2 + 12/4!*x^4 - 98/6!*x^6 - 16968/8!*x^8 ...
MAPLE
egf := arctan(tan(x)*sinh(x)): ser := series(egf, x, 33):
seq((2*n)!*coeff(ser, x, 2*n), n = 0..15); # Peter Luschny, Apr 23 2024
MATHEMATICA
With[{nn=30}, Take[CoefficientList[Series[ArcTan[Sinh[x]Tan[x]], {x, 0, nn}], x] Range[0, nn]!, {1, -1, 2}]] (* Harvey P. Dale, Oct 17 2015 *)
CROSSREFS
Cf. A012816.
Sequence in context: A231173 A303203 A372154 * A012550 A009816 A227084
KEYWORD
sign
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
Missing a(0) = 0 prepended and new name by Peter Luschny, Apr 23 2024
STATUS
approved