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.

A009670 E.g.f. tan(sin(x)*cos(x)) (odd powers only).

Original entry on oeis.org

1, -2, -48, 880, 59136, -4558336, -358510592, 87349164032, 5261729398784, -4294386293800960, -9972473469599744, 442881767885962739712, -50940651947982996897792, -83250857495799899292172288
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A101921.

Programs

  • Maxima
    a(n):=2*sum(4^(n-m)*((sum(j!*2^(-j)*(-1)^(j+1)*stirling2(2*m+1, j), j, 1, 2*m+1))*sum((2*i-(2*m+1))^(2*n+1)*binomial(2*m+1, i)*(-1)^(n+1-i), i, 0, (2*m+1)/2))/(2*m+1)!, m, 0, n); /* Vladimir Kruchinin, Jun 28 2011 */

Formula

a(n)=2*sum(m=0..n, 4^(n-m)*((sum(j=1..2*m+1, j!*2^(-j)*(-1)^(j+1)*stirling2(2*m+1, j)))*sum(i=0..(2*m+1)/2, (2*i-(2*m+1))^(2*n+1)*binomial(2*m+1, i)*(-1)^(n+1-i)))/(2*m+1)!). - Vladimir Kruchinin, Jun 29 2011

Extensions

Extended with signs by Olivier Gérard, Mar 15 1997