OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..420
P. Peart and W.-J. Woan, Generating Functions via Hankel and Stieltjes Matrices, J. Integer Seqs., Vol. 3 (2000), #00.2.1.
FORMULA
E.g.f.: sqrt(exp(5*x)/(2 - exp(x))).
a(n) ~ 4*sqrt(2)*n^n/(exp(n)*(log(2))^(n+1/2)). - Vaclav Kotesovec, Jun 27 2013
MATHEMATICA
CoefficientList[Series[Sqrt[E^(5*x)/(2-E^x)], {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Jun 27 2013 *)
PROG
(Magma)
R<x>:=PowerSeriesRing(Rationals(), 30);
Coefficients(R!(Laplace( Sqrt(Exp(5*x)/(2 - Exp(x))) ))); // G. C. Greubel, Apr 28 2023
(SageMath)
def A054912_list(prec):
P.<x> = PowerSeriesRing(QQ, prec)
return P( sqrt(exp(5*x)/(2-exp(x))) ).egf_to_ogf().list()
A054912_list(30) # G. C. Greubel, Apr 28 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, May 23 2000
STATUS
approved