A359553 Numerator of the coefficient of x^(2n+1) in the Taylor series expansion of sin(sin(x)).
1, -1, 1, -8, 13, -47, 15481, -15788, 451939, -23252857, 186846623, -831520891, 1108990801, -143356511198507, 920716137922619, -13390469094133441, 929480267163260699, -118186323448146684881, 69875813865886026036091, -155759565768613453511731
Offset: 0
Examples
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 + ...
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.
Programs
-
PARI
a_vector(len) = apply(numerator, Vec(substpol(sin(sin(Ser('x,,2*len)))/'x, 'x^2,'x)));
Comments