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.

A009201 E.g.f. exp(sin(sin(x))).

Original entry on oeis.org

1, 1, 1, -1, -7, -7, 73, 335, -687, -12367, -19471, 461119, 2839561, -15282199, -260138759, -15084017, 22560194593, 113205762401, -1856685484703, -23353924295169, 115492830956953, 3999727786726617, 5211807618131753, -646193037236457649
Offset: 0

Views

Author

Keywords

Programs

  • Mathematica
    With[{nn=30},CoefficientList[Series[Exp[Sin[Sin[x]]],{x,0,nn}],x] Range[ 0,nn]!] (* Harvey P. Dale, Dec 21 2018 *)
  • Maxima
    a(n):=if n=0 then 1 else sum((sum((4^(j+1)*(sum((i-n/2+j)^(n-2*j+2*k)*(-1)^(i)*binomial(n-2*j, i), i, 0, (n/2-j)))*sum((-n/2+j-k+i)^n*binomial(n-2*j+2*k, i)*(-1)^(j-i), i, 0, (n/2-j+k)))/(n-2*j+2*k)!, k, 0, j))/(n-2*j)!, j, 0, (n-1)/2); /* Vladimir Kruchinin, Jun 20 2011 */

Extensions

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