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.

User: Ozaner Hansha

Ozaner Hansha's wiki page.

Ozaner Hansha has authored 1 sequences.

A302977 Numerators of the rational factor of Kaplan's series for the Dottie number.

Original entry on oeis.org

1, -1, -1, -43, -223, -60623, -764783, -107351407, -2499928867, -596767688063, -22200786516383, -64470807442488761, -3504534741776035061, -3597207408242668198973, -268918457620309807441853, -185388032403184965693274807, -18241991360742724891839902347
Offset: 0

Author

Ozaner Hansha, Apr 16 2018

Keywords

Comments

In Kaplan's original article, where the term "Dottie" was coined, he mentioned that while the number was indeed transcendental, it was possible to express it as an infinite sum with the general term r_n*Pi^(2n+1) where r_n was a sequence of rational numbers.

Examples

			The partial Kaplan series at n=3 is d = Pi/4 - Pi^3/768 - Pi^5/61440 - 43*Pi^7/165150720.
		

Crossrefs

Cf. A306254 (denominators).

Programs

  • Mathematica
    f[x_] := x - Cos[x]; g[x_] := InverseFunction[f][x]; s = {1}; Do[AppendTo[s, Numerator[(-1/2)^n * 1/n! * Derivative[n][g][Pi/2]]], {n, 3, 30, 2}]; s (* Amiram Eldar, Jan 31 2019 *)

Formula

These are the numerators of the unique sequence of rational numbers r_n such that d = Sum_{n>=0} r_n*Pi^(2*n+1) (where d is the Dottie number A003957).
r_0 = 1/4 and for n>0, r_n = b_(2*n+1); where b_n = g^(n)(Pi/2)/(2^n*n!) (and g^(n) is the n-th derivative of the inverse of x - cos(x)). A proof of this can be found in the second Hansha link.

Extensions

More terms from Amiram Eldar, Jan 31 2019