A103971 Expansion of (1 - sqrt(1 - 4*x - 16*x^2))/(2*x).
1, 5, 10, 45, 190, 930, 4660, 24445, 131190, 719830, 4013260, 22684370, 129661740, 748252580, 4353379560, 25508284445, 150392391590, 891549228430, 5310994644060, 31775749689670, 190860711108740, 1150473009844380
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..200
Crossrefs
Programs
-
Maple
n:=30:a(0):=1:a(1):=5: for k from 1 to n do a(k+1):=sum('a(p)*a(k-p)','p'=0..k):od:seq(a(k),k=0..n); # Richard Choulet, Dec 17 2009
-
Mathematica
CoefficientList[Series[(1-Sqrt[1-4x-16x^2])/(2x),{x,0,30}],x] (* Harvey P. Dale, Apr 02 2012 *)
Formula
G.f.: (1-sqrt(1-4*x*(1+4*x)))/(2*x).
a(n) = Sum_{k=0..n} 4^(n-k)*C(k)*C(k+1, n-k).
Another recurrence formula: (n+1)*a(n) = 2*(2*n-1)*a(n-1) + 16*(n-2)*a(n-2). - Richard Choulet, Dec 17 2009
a(n) ~ sqrt(10 + 2*sqrt(5))*(2 + 2*sqrt(5))^n/(2*sqrt(Pi)*n^(3/2)). - Vaclav Kotesovec, Oct 17 2012
Equivalently, a(n) ~ 5^(1/4) * 2^(2*n) * phi^(n + 1/2) / (sqrt(Pi) * n^(3/2)), where phi = A001622 is the golden ratio. - Vaclav Kotesovec, Dec 08 2021
Comments