OFFSET
0,2
COMMENTS
Note that the function cosh(2*n*arctanh(sqrt(x))) is the o.g.f. for the coordination sequence of the C_n lattice. See, for example, A010006.
FORMULA
a(n) = (8*n + 1)*binomial(2*n,n).
O.g.f. cosh(3*arctanh(2*sqrt(x))) = (1 + 12*x)/(1 - 4*x)^(3/2) = 1 + 18*x + 102*x^2 + 500*x^3 + ....
D-finite with recurrence: n*a(n) +2*(4*n-13)*a(n-1) +24*(-2*n+3)*a(n-2)=0. - R. J. Mathar, Jan 22 2020
MAPLE
seq((8*n + 1)*binomial(2*n, n), n = 0..20);
MATHEMATICA
CoefficientList[Series[Cosh[3*ArcTanh[2*Sqrt[x]]], {x, 0, 20}], x] (* Vaclav Kotesovec, Apr 10 2017 *)
PROG
(PARI) my(x='x + O('x^30)); Vec((1 + 12*x)/(1 - 4*x)^(3/2)) \\ Indranil Ghosh, Apr 10 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Peter Bala, Apr 09 2017
STATUS
approved