OFFSET
0,2
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..200
FORMULA
a(n) ~ (-1)^n * c * d^(2*n) * (2*n)! / sqrt(n), where d = 1 / arcsinh(arcsinh(1)) = 1.25792845770279367616342387910366384..., c = 0.8688030872074338111899369246534915... . - Vaclav Kotesovec, Feb 03 2015
EXAMPLE
x-3/3!*x^3+41/5!*x^5-1515/7!*x^7+113489/9!*x^9...
MATHEMATICA
Take[Rest[With[{nn=25}, CoefficientList[Series[ArcSinh[Sin[Sin[x]]], {x, 0, nn}], x]Range[0, nn]!]], {1, -1, 2}] (* Harvey P. Dale, Oct 21 2011 *)
(* Alternative: *)
nmax = 15; CoefficientList[Series[(Cos[Sqrt[x]]*Cos[Sin[Sqrt[x]]]) / Sqrt[1 + Sin[Sin[Sqrt[x]]]^2], {x, 0, nmax}], x] * (2*Range[0, nmax])! (* Vaclav Kotesovec, Aug 25 2025 *)
CROSSREFS
KEYWORD
sign,changed
AUTHOR
EXTENSIONS
Confirmed by Harvey P. Dale, Oct 21 2011
Name edited by Michel Marcus, Aug 25 2025
STATUS
approved
