login
A193385
Expansion of e.g.f. cosh( x^2/2 )/ (1-x).
2
1, 1, 2, 6, 27, 135, 810, 5670, 45465, 409185, 4091850, 45010350, 540134595, 7021749735, 98304496290, 1474567444350, 23593081136625, 401082379322625, 7219482827807250, 137170173728337750, 2743403475221484075
OFFSET
0,3
LINKS
FORMULA
a(n) ~ cosh( 1/2 ) * n!.
a(n) = (A000266(n) + A130905(n)) / 2.
MAPLE
a:=series(cosh(x^2/2)/(1-x), x=0, 21): seq(n!*coeff(a, x, n), n=0..20); # Paolo P. Lava, Mar 27 2019
MATHEMATICA
With[{nn=30}, CoefficientList[Series[Cosh[x^2/2]/(1-x), {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, May 01 2012 *)
PROG
(PARI) {a(n) = if( n<0, 0, n! * polcoeff( cosh( x^2 / 2 + x * O(x^n)) / (1 - x), n))}
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Cosh(x^2/2)/(1-x))); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, Aug 13 2018
CROSSREFS
Sequence in context: A387581 A344495 A391295 * A030961 A030826 A030914
KEYWORD
nonn
AUTHOR
Michael Somos, Jul 24 2011
STATUS
approved