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.

A009008 Expansion of e.g.f.: 1/cos(sin(x)) (even-indexed coefficients only).

Original entry on oeis.org

1, 1, 1, -23, -415, 849, 421089, 16027897, -602344127, -137830187103, -6375572516543, 1282077224074761, 294398207479497377, 6767832711454751473, -10535904130516747834591, -2468712006908963695579879, 172926818125145929773139073
Offset: 0

Views

Author

Keywords

Programs

  • Mathematica
    f[x_] := Sec@Sin[x]; Table[Derivative[2*n][f][0], {n, 0, 16}] (* Arkadiusz Wesolowski, Aug 18 2012 *)
    With[{nmax = 50}, CoefficientList[Series[1/(Cos[Sin[x]]), {x, 0, nmax}], x]*Range[0, nmax]!][[1 ;; -1 ;; 2]] (* G. C. Greubel, Jul 21 2018 *)
  • PARI
    x='x+O('x^50); v=Vec(serlaplace(1/cos(sin(x)))); vector(#v\2,n,v[2*n-1]) \\ G. C. Greubel, Jul 21 2018

Extensions

a(16) from Arkadiusz Wesolowski, Aug 18 2012