OFFSET
0,2
COMMENTS
FORMULA
a(n) = sum(binomial(n,k)*L(k)*L(n-k),k=floor(n/2)+1..n), n>=0,
with the Lucas numbers L(n)=A000032(n). For n=0 this is 0.
E.g.f.: exp(x)*(cosh(sqrt(5)*x)+1) - (BesselI(0,2*phi*x) + BesselI(0,2*(phi-1)*x) + 2*BesselI(0,2*I*x))/2. Compare this with the e.g.f. of A204449, where phi and BesselI are explained.
Bisection: a(2*k) = (2^(2*k)-binomial(2*k,k))*L(2*k)/2 + 1 - ((-1)^k)*binomial(2*k,k), a(2*k+1) = 2^(2*k)*L(2*k+1)+ 1 = A204449(2*k+1), k>=0.
EXAMPLE
With A000032 = {2, 1, 3, 4, 7, 11, ...}
a(4) = 4*4*1 + 1*7*2 = 30.
a(5) = 10*4*3 + 5*7*1 + 1*11*2 = 177.
CROSSREFS
KEYWORD
nonn
AUTHOR
Wolfdieter Lang, Jan 16 2012
STATUS
approved