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.

A009429 E.g.f. log(1+x)/cos(x).

Original entry on oeis.org

0, 1, -1, 5, -12, 69, -285, 2001, -12208, 104073, -854865, 8723549, -90552396, 1088372557, -13647385661, 190057979177, -2787246189120, 44285819490065, -742019231348865, 13267464006201781, -249642268776311020
Offset: 0

Views

Author

Keywords

Examples

			log(1+x)/cos(x) = 0 + x - 1/2*x^2 + 5/6*x^3 - 1/2*x^4 + 23/40*x^5 -+ ...
		

Programs

  • Mathematica
    With[{nn=30},CoefficientList[Series[Log[1+x]/Cos[x],{x,0,nn}], x] Range[0,nn]!] (* Harvey P. Dale, Jan 26 2013 *)

Formula

a(n) ~ (n-1)! * (-1)^(n+1) / cos(1). - Vaclav Kotesovec, Jan 23 2015

Extensions

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