login
A322544
a(n) is the reciprocal of the coefficient of x^n in the power series of the function defined by ((1+2x)*exp(x) + 3*exp(-x) - 4)/ (4x^2).
1
1, 6, 8, 60, 180, 1680, 8064, 90720, 604800, 7983360, 68428800, 1037836800, 10897286400, 186810624000, 2324754432000, 44460928512000, 640237370572800, 13516122267648000, 221172909834240000, 5109094217170944000, 93666727314800640000, 2350183339898634240000, 47726800133326110720000
OFFSET
0,2
LINKS
FORMULA
a(n) = (n+2)!/(3*floor(n/2)-n+2).
a(n) = (4*(n+2)!)/(2n+5+3*(-1)^n).
a(n) = 4/([x^n]((exp(x)*(1+2x)+3*exp(-x)-4)/x^2)).
a(n) = (n+2)!/(A028242(n)+1)
a(n) = (n+2)!/A030451(n+1)
MAPLE
a:=n->factorial(n+2)/(3*floor(n/2)-n+2): seq(a(n), n=0..25); # Muniru A Asiru, Dec 20 2018
MATHEMATICA
Table[4*Factorial[n + 2]/(2*n + 5 + 3*(-1)^n), {n, 0, 25}]
(* or *)
Function[x, 1/x] /@
CoefficientList[Series[(Exp[x]/4 + 3/4*Exp[-x] + x/2*Exp[x] - 1)/x^2, {x, 0, 20}], x]
PROG
(PARI) a(n)={(4*(n+2)!)/(5 + 3*(-1)^n + 2*n)} \\ Andrew Howroyd, Dec 14 2018
(PARI) my(x='x + O('x^30)); Vec(apply(x->1/x, ((1+2*x)*exp(x) + 3*exp(-x) - 4)/ (4*x^2))) \\ Michel Marcus, Dec 19 2018
(GAP) List([0..25], n->(4*Factorial(n+2))/(2*n+5+3*(-1)^n)); # Muniru A Asiru, Dec 20 2018
CROSSREFS
Cf. A060593 (even bisection, shifted), A028242 (denominator minus 1), A030451 (denominator, shifted), A107991 (Expansion of a similar function)
Sequence in context: A240544 A136931 A192383 * A270038 A284635 A250256
KEYWORD
nonn
AUTHOR
STATUS
approved