A327034
Expansion of e.g.f. exp(x) / (2 - cosh(x)).
Original entry on oeis.org
1, 1, 2, 4, 14, 46, 242, 1114, 7814, 46246, 405482, 2933074, 30860414, 263817646, 3238391522, 31943268634, 448122565814, 5009616448246, 79063212894362, 987840438629794, 17322647732052014, 239217148602642046, 4614370558369770002, 69790939492563608554
Offset: 0
-
nmax = 23; CoefficientList[Series[Exp[x]/(2 - Cosh[x]), {x, 0, nmax}], x] Range[0, nmax]!
A081558
Exponential generating function: exp(cosh(x)+2*x-1).
Original entry on oeis.org
1, 2, 5, 14, 44, 152, 575, 2354, 10379, 48902, 245240, 1301984, 7294589, 42959282, 265263185, 1712168654, 11528506124, 80783015192, 588097479635, 4439382164114, 34699233959759, 280381494540182, 2339287666524440, 20125268756209664, 178348602246900569
Offset: 0
-
m:=30; R:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( Exp(Cosh(x)+2*x-1) )); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, Aug 13 2019
-
seq(coeff(series(exp(cosh(x)+2*x-1), x, n+1)*factorial(n), x, n), n = 0 .. 30); # G. C. Greubel, Aug 13 2019
-
With[{nn = 30}, CoefficientList[Series[Exp[Cosh[x] + 2 x - 1], {x, 0, nn}], x] Range[0, nn]!] (* Vincenzo Librandi, Aug 08 2013 *)
-
my(x='x+O('x^30)); Vec(serlaplace( exp(cosh(x)+2*x-1) )) \\ G. C. Greubel, Aug 13 2019
-
[factorial(n)*( exp(cosh(x)+2*x-1) ).series(x,n+1).list()[n] for n in (0..30)] # G. C. Greubel, Aug 13 2019
Showing 1-2 of 2 results.
Comments