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

A296856
Expansion of e.g.f. cosh(x*tan(x/2)) (even powers only).
6
1, 0, 3, 15, 224, 4545, 126753, 4626076, 213703095, 12167727543, 835893746300, 68091766034061, 6483302813035857, 712860388963255000, 89585739948801890619, 12753524767335858733935, 2040804997678590563632568, 364567987004433619078313961
OFFSET
0,3
FORMULA
a(n) = (2*n)! * [x^(2*n)] cosh(x*tan(x/2)).
EXAMPLE
cosh(x*tan(x/2)) = 1 + 3*x^4/4! + 15*x^6/6! + 224*x^8/8! + 4545*x^10/10! + 126753*x^12/12! + ...
MATHEMATICA
nmax = 17; Table[(CoefficientList[Series[Cosh[x Tan[x/2]], {x, 0, 2 nmax}], x] Range[0, 2 nmax]!)[[n]], {n, 1, 2 nmax + 1, 2}]
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 21 2017
STATUS
approved