[go: up one dir, main page]

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

A013418
tan(arcsin(x)-arcsinh(x)) = 2/3!*x^3+450/7!*x^7+4480/9!*x^9...
0
0, 2, 0, 450, 4480, 1786050, 61776000, 37240453250, 2713505184000, 2464296285701250, 308006231110240000, 397784819452992221250, 76036685958833418000000, 132964856302641623934781250
OFFSET
1,2
FORMULA
a(n) = (2n+1)! * [x^(2n+1)] tan(arcsin(x)-arcsinh(x)).
MAPLE
a:= n-> (2*n+1)!*coeff(series(tan(arcsin(x)-arcsinh(x)),
x, 2*n+2), x, 2*n+1):
seq(a(n), n=0..20); # Alois P. Heinz, Jul 20 2013
MATHEMATICA
With[{nn=30}, Take[CoefficientList[Series[Tan[ArcSin[x]-ArcSinh[x]], {x, 0, nn}], x] Range[0, nn-1]!, {2, -1, 2}]] (* Harvey P. Dale, Jul 20 2013 *)
CROSSREFS
Sequence in context: A012452 A339269 A013417 * A259435 A114630 A114632
KEYWORD
nonn
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
a(0)=0 prepended and programs adapted by Vaclav Kotesovec, Feb 06 2015
STATUS
approved