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.

A009007 Expansion of 1/cos(log(1+x)).

This page as a plain text file.
%I A009007 #21 Sep 08 2022 08:44:37
%S A009007 1,0,1,-3,16,-100,760,-6720,67940,-772560,9760100,-135617900,
%T A009007 2055532400,-33748556400,596675513200,-11302050942000,228340292986000,
%U A009007 -4901379615184000,111394219174810000,-2672242230261006000
%N A009007 Expansion of 1/cos(log(1+x)).
%H A009007 Vincenzo Librandi, <a href="/A009007/b009007.txt">Table of n, a(n) for n = 0..200</a>
%F A009007 a(n) ~ n! / ((exp(Pi/2)-1) * (exp(-Pi/2)-1)^n). - _Vaclav Kotesovec_, Jan 22 2015
%p A009007 seq(coeff(series(factorial(n)*(1/cos(log(1+x))), x,n+1),x,n),n=0..20); # _Muniru A Asiru_, Jul 21 2018
%t A009007 With[{nn = 50}, CoefficientList[Series[1/Cos[Log[1 + x]], {x, 0, nn}], x] Range[0, nn]!] (* _Vincenzo Librandi_, Apr 11 2014 *)
%o A009007 (PARI) x='x+O('x^30); Vec(serlaplace(1/cos(log(1+x)))) \\ _G. C. Greubel_, Jul 21 2018
%o A009007 (Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(1/Cos(Log(1+x)))); [Factorial(n-1)*b[n]: n in [1..m]]; // _G. C. Greubel_, Jul 21 2018
%K A009007 sign
%O A009007 0,4
%A A009007 _R. H. Hardin_, _Simon Plouffe_