cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A359553 Numerator of the coefficient of x^(2n+1) in the Taylor series expansion of sin(sin(x)).

Original entry on oeis.org

1, -1, 1, -8, 13, -47, 15481, -15788, 451939, -23252857, 186846623, -831520891, 1108990801, -143356511198507, 920716137922619, -13390469094133441, 929480267163260699, -118186323448146684881, 69875813865886026036091, -155759565768613453511731
Offset: 0

Views

Author

Kevin Ryde, Jan 09 2023

Keywords

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

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 + ...
		

Crossrefs

Cf. A359554 (denominators), A003712 (e.g.f. sin(sin(x))).

Programs

  • PARI
    a_vector(len) = apply(numerator, Vec(substpol(sin(sin(Ser('x,,2*len)))/'x, 'x^2,'x)));

Formula

a(n) = numerator of A003712(n)/(2n+1)!.
Sum_{n>=0} a(n)/A359554(n) * x^(2*n+1). = sin(sin(x)).
Sum_{n>=0} abs(a(n))/A359554(n) * x^(2*n+1). = sinh(sinh(x)).