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-3 of 3 results.

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

Original entry on oeis.org

0, 1, 1, 33, 437, 22205, 978873, 81005113, 7356832669, 949918117653, 142805534055905, 27120922891214801, 6016195462632487941, 1592800634594574194413, 486576430503128985793417, 171866951067212728072402665, 69025662074064538734826793453
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 21 2017

Keywords

Examples

			tan(x*tan(x/2)) = x^2/2! + x^4/4! + 33*x^6/6! + 437*x^8/8! + ...
		

Crossrefs

Programs

  • Mathematica
    nmax = 16; Table[(CoefficientList[Series[Tan[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)] tan(x*tan(x/2)).
a(n) ~ c * d^n * n^(2*n + 1/2) / exp(2*n), where d = 16/Pi^2 = 1.621138938277404343102071411355642222469740394755... is the root of the equation tan(1/sqrt(d)) = Pi*sqrt(d)/4 and c = 1.75568815831... - Vaclav Kotesovec, Dec 21 2017, updated Mar 16 2024

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

Original entry on oeis.org

1, 1, 2, 3, -3, 20, 105, -5271, 133826, -2714517, 25525845, 2131781300, -235250824479, 17527695547713, -1124258412169438, 58383380825728035, -975024061456732035, -398903577787777972396, 97649546210035758250281, -17069419358223320552890167
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 21 2017

Keywords

Examples

			exp(x*tanh(x/2)) = 1 + x^2/2! + 2*x^4/4! + 3*x^6/6! - 3*x^8/8! + ...
		

Crossrefs

Programs

  • Mathematica
    nmax = 19; Table[(CoefficientList[Series[Exp[x Tanh[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)] exp(x*tanh(x/2)).

A305711 Expansion of e.g.f. exp(2*x/(exp(x) + 1)).

Original entry on oeis.org

1, 1, 0, -2, -1, 11, 13, -111, -220, 1756, 5051, -39775, -153191, 1215345, 5952668, -48020714, -288569149, 2377190003, 17069110381, -143857868895, -1209439895944, 10435153277620, 101078662547567, -892827447251575, -9834570608359487, 88900938146195601, 1101567283699652888
Offset: 0

Views

Author

Ilya Gutkovskiy, Jun 08 2018

Keywords

Examples

			exp(2*x/(exp(x) + 1)) = 1 + x - 2*x^3/3! - x^4/4! + 11*x^5/5! + 13*x^6/6! - 111*x^7/7! - 220*x^8/8! + ...
		

Crossrefs

Programs

  • Maple
    a:=series(exp(2*x/(exp(x)+1)),x=0,27): seq(n!*coeff(a,x,n),n=0..26); # Paolo P. Lava, Mar 26 2019
  • Mathematica
    nmax = 26; CoefficientList[Series[Exp[2 x/(Exp[x] + 1)], {x, 0, nmax}], x] Range[0, nmax]!
    a[n_] := a[n] = Sum[k EulerE[k - 1, 0] Binomial[n - 1, k - 1] a[n - k], {k, 1, n}]; a[0] = 1; Table[a[n], {n, 0, 26}]
    a[n_] := a[n] = Sum[2 (1 - 2^k) BernoulliB[k] Binomial[n - 1, k - 1] a[n - k], {k, 1, n}]; a[0] = 1; Table[a[n], {n, 0, 26}]
Showing 1-3 of 3 results.