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

A012136
Expansion of e.g.f. tan(arcsin(arctanh(x))) (odd powers only).
0
1, 5, 129, 7797, 848481, 145041093, 35799178401, 12045448529397, 5298881528389185, 2952169020073027845, 2031522244065649876545, 1692164698229362361298165, 1677876856826199251515980705
OFFSET
1,2
FORMULA
a(n) = (2*n+1)!*sum(k=0..n, 16^(-k)*binomial(2*k,k)*(2*k+1)!*sum(i=2*k+1..2*n+1, (2^i*Stirling1(i,2*k+1)*binomial(2*n,i-1))/i!))/2. - Vladimir Kruchinin, Jun 17 2011
EXAMPLE
tan(arcsin(arctanh(x))) = x + (5/3!)*x^3 + (129/5)!*x^5 + (7797/7!)*x^7 + (848481/9!)*x^9 + ...
MATHEMATICA
With[{nn=30}, Take[CoefficientList[Series[Tan[ArcSin[ArcTanh[x]]], {x, 0, nn}], x] Range[0, nn-1]!, {2, -1, 2}]] (* Harvey P. Dale, May 08 2024 *)
PROG
(Maxima)
a(n):=(2*n+1)!*sum(16^(-k)*binomial(2*k, k)*(2*k+1)!*sum((2^i*stirling1(i, 2*k+1)*binomial(2*n, i-1))/i!, i, 2*k+1, 2*n+1), k, 0, n)/2; /* Vladimir Kruchinin, Jun 17 2011 */
CROSSREFS
Sequence in context: A230303 A094074 A012218 * A012022 A012176 A012187
KEYWORD
nonn
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
STATUS
approved