A009123
Expansion of e.g.f.: cosh(log(1+sin(x))).
Original entry on oeis.org
1, 0, 1, -3, 8, -30, 136, -693, 3968, -25260, 176896, -1351383, 11184128, -99680490, 951878656, -9695756073, 104932671488, -1202439837720, 14544442556416, -185185594118763, 2475749026562048, -34674437196568950
Offset: 0
-
m:=30; R:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Cosh(Log(1+Sin(x))))); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, Jul 26 2018
-
CoefficientList[Series[(1 + (1 + Sin[x])^2)/(2*(1 + Sin[x])), {x, 0, 20}], x] * Range[0, 20]! (* Vaclav Kotesovec, Jan 22 2015 *)
-
x='x+O('x^30); Vec(serlaplace(cosh(log(1+sin(x))))) \\ G. C. Greubel, Jul 26 2018
A009567
Expansion of e.g.f.: sinh(log(1 + sin(x))).
Original entry on oeis.org
0, 1, -1, 2, -8, 31, -136, 692, -3968, 25261, -176896, 1351382, -11184128, 99680491, -951878656, 9695756072, -104932671488, 1202439837721, -14544442556416, 185185594118762, -2475749026562048, 34674437196568951
Offset: 0
-
With[{nn=30},CoefficientList[Series[Sinh[Log[1+Sin[x]]],{x,0,nn}],x] Range[ 0,nn]!] (* Harvey P. Dale, May 11 2014 *)
-
x='x+O('x^30); concat([0], Vec(serlaplace(sinh(log(1+sin(x)))))) \\ G. C. Greubel, Jan 21 2018
Definition clarified and previous Mathematica program replaced by
Harvey P. Dale, May 11 2014
A029584
Expansion of cos x + tan x + sec x.
Original entry on oeis.org
2, 1, 0, 2, 6, 16, 60, 272, 1386, 7936, 50520, 353792, 2702766, 22368256, 199360980, 1903757312, 19391512146, 209865342976, 2404879675440, 29088885112832, 370371188237526, 4951498053124096, 69348874393137900
Offset: 0
-
With[{nn=30},CoefficientList[Series[Cos[x]+Tan[x]+Sec[x],{x,0,nn}],x] Range[0,nn]!] (* Harvey P. Dale, Jun 09 2025 *)
A012009
Expansion of e.g.f. sech(log(cos(x))) (even exponents only).
Original entry on oeis.org
1, 0, -3, -30, -63, 12540, 602877, 6625710, -1991169183, -241970036520, -7540177734243, 2917041754949850, 699983161534169697, 46722975483964508820, -21334067257986056115363, -8882421213380429461235610, -1081286159351846822872767423
Offset: 0
Patrick Demichel (patrick.demichel(AT)hp.com)
1 - (3/4!)*x^4 - (30/6!)*x^6 - (63/8!)*x^8 + (12540/10!)*x^10 ...
-
With[{nn=40},Take[CoefficientList[Series[Sech[Log[Cos[x]]],{x,0,nn}], x] Range[0,nn]!,{1,-1,2}]] (* Harvey P. Dale, Dec 16 2011 *)
Showing 1-4 of 4 results.
Comments