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.

A013301 E.g.f.: arctanh(arctanh(x)-log(x+1)).

Original entry on oeis.org

0, 1, 6, 150, 7560, 650160, 84823200, 15617281680, 3855823171200, 1229340262550400, 491641405006752000, 241000527467642342400, 142107676844443620710400, 99236357585615999548800000
Offset: 0

Views

Author

Patrick Demichel (patrick.demichel(AT)hp.com)

Keywords

Examples

			1/2!*x^2 + 6/4!*x^4 + 150/6!*x^6 + 7560/8!*x^8 + ...
		

Crossrefs

Cf. A219863.

Programs

  • Mathematica
    nn = 20; Table[(CoefficientList[Series[ArcTanh[ArcTanh[x] - Log[1 + x]], {x, 0, 2*nn}], x] * Range[0, 2*nn]!)[[n]], {n, 1, 2*nn+1, 2}] (* Vaclav Kotesovec, Feb 05 2015 *)

Formula

a(n) ~ (2*n-1)! / (1-exp(-2))^n. - Vaclav Kotesovec, Feb 05 2015

Extensions

Definition clarified by Vaclav Kotesovec, Feb 05 2015
Prepended missing a(0)=0 from Vaclav Kotesovec, Feb 05 2015