OFFSET
0,4
COMMENTS
Denominators are A359554.
Sine is an odd function so the Taylor series has 0 coefficients at even terms x^(2n).
A003712(n) is the numerator for use with denominator (2n+1)! so that here a(n)/A359554(n) = A003712(n)/(2n+1)! reduced to least terms.
abs(a(n)) is the corresponding numerator in the expansion of sinh(sinh(x)).
LINKS
Kevin Ryde, Table of n, a(n) for n = 0..220
Christopher Towse, Iteration of Sine and Related Power Series, Mathematics Magazine, volume 87, number 5, December 2014, pages 338-349.
FORMULA
EXAMPLE
Fractions begin: 1, -1/3, 1/10, -8/315, 13/2520, -47/49896, ...
Series begins: sin(sin(x)) = x - (1/3)*x^3 + (1/10)*x^5 - (8/315)*x^7 + ...
PROG
(PARI) a_vector(len) = apply(numerator, Vec(substpol(sin(sin(Ser('x, , 2*len)))/'x, 'x^2, 'x)));
CROSSREFS
KEYWORD
sign,frac,easy
AUTHOR
Kevin Ryde, Jan 09 2023
STATUS
approved