OFFSET
0,3
LINKS
Harvey P. Dale, Table of n, a(n) for n = 0..400
CĂ©lia Biane, Greg Hampikian, Sergey Kirgizov, and Khaydar Nurligareev, Endhered patterns in matchings and RNA, arXiv:2404.18802 [math.CO], 2024. See pp. 8-9.
FORMULA
G.f.: (1/G(0)-1)/x/2 where G(k)= 1 - 4*x*k - x^2*(2*k+1)*(2*k+2)/G(k+1); (continued fraction, 1-step). - Sergei N. Gladkovskii, Jul 10 2012
a(n) ~ sqrt(2)*2^n*n^(n+1)/exp(n+1/2). - Vaclav Kotesovec, Aug 15 2013
E.g.f.: x*exp(-x)/(1-2*x)^(3/2). - Vaclav Kotesovec, Feb 23 2014
EXAMPLE
a(2)=4*(0+1)=4, a(3)=6*(4+1)=30, a(4)=8*(30+4)=272...
MATHEMATICA
RecurrenceTable[{a[0]==0, a[1]==1, a[n]==2n(a[n-1]+a[n-2])}, a[n], {n, 30}] (* Harvey P. Dale, Jun 01 2012 *)
CoefficientList[Series[x*E^(-x)/(1-2*x)^(3/2), {x, 0, 20}], x] * Range[0, 20]! (* Vaclav Kotesovec, Feb 23 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Gary Detlefs, Jul 18 2010
EXTENSIONS
Corrected and extended by Harvey P. Dale, Jun 01 2012
STATUS
approved