OFFSET
1,2
COMMENTS
The denominators of a series used by Johann Heinrich Lambert (1728-1777) in expressing the relationship between a circular sector and a hyperbolic sector.
Lambert gave a(1)-a(4).
REFERENCES
Johann Heinrich Lambert: ``Mémoire sur quelques propriétés remarquables des quantités transcendentes circulaires et logarithmiques,'' Histoire de l'Académie Royale des Sciences et Belles-Lettres, 1761, volume XVII, Berlin, 1768, pp. 265-322.
LINKS
Denis Roegel, Lambert's proof of the irrationality of Pi: Context and translation, hal-02984214 [math.HO], 2020.
EXAMPLE
arctan(tanh(x)) = x - 2/3*x^3 + 2/3*x^5 - 244/315*x^7 + 554/567*x^9 ...
arctanh(tan(x)) = x + 2/3*x^3 + 2/3*x^5 + 244/315*x^7 + 554/567*x^9 ...
MATHEMATICA
Denominator @ CoefficientList[ Series[ArcTanh[Tan[x]], {x, 0, 36}], x][[2 ;; -1 ;; 2]] (* Amiram Eldar, Jun 04 2020 *)
PROG
(PARI) my(x='x+O('x^40), v=Vec(atanh(tan(x)))); apply(denominator, vector(#v\2, k, v[2*k-1])) \\ Michel Marcus, Jun 05 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Denis Roegel, May 28 2020
STATUS
approved