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.

Showing 1-2 of 2 results.

A296853 Expansion of e.g.f. tanh(x*tan(x/2)) (even powers only).

Original entry on oeis.org

0, 1, 1, -27, -403, 8345, 688473, -208019, -3189211931, -162605047455, 28806493001105, 5257860587364341, -288068264497990179, -230932276247139756887, -14420179324444754436023, 13944106915630111553887485, 3643613240568912544562868053
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 21 2017

Keywords

Examples

			tanh(x*tan(x/2)) = x^2/2! + x^4/4! - 27*x^6/6! - 403*x^8/8! + 8345*x^10/10! + ...
		

Crossrefs

Programs

  • Mathematica
    nmax = 16; Table[(CoefficientList[Series[Tanh[x Tan[x/2]], {x, 0, 2 nmax}], x] Range[0, 2 nmax]!)[[n]], {n, 1, 2 nmax + 1, 2}]

Formula

a(n) = (2*n)! * [x^(2*n)] tanh(x*tan(x/2)).

A024257 Expansion of tanh(tan(x)*x)/2.

Original entry on oeis.org

0, 1, 4, -72, -5632, -161920, 18173952, 4194147328, 310213328896, -84365860995072, -39813939519815680, -5549928926785306624, 2813587774502929956864, 2234702652489178135134208, 497733049858403607865458688
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A009817.

Programs

  • Mathematica
    With[{nn=30},Take[CoefficientList[Series[Tanh[Tan[x]*x]/2 ,{x,0,nn}],x] Range[0,nn]!,{1,-1,2}]] (* Harvey P. Dale, Apr 27 2016 *)

Extensions

Extended with signs Mar 1997
Prior Mathematica program deleted by Harvey P. Dale, Apr 27 2016
Showing 1-2 of 2 results.