OFFSET
0,2
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..1000
Vaclav Kotesovec, Asymptotics of the Euler transform of Fibonacci numbers, arXiv:1508.01796 [math.CO], Aug 07 2015
Eric Weisstein's World of Mathematics, Pell Number
Wikipedia, Pell number
FORMULA
a(n) ~ (1+sqrt(2))^n * exp(-1 + 2^(-3/2) + 2*sqrt(n) + s) / (2 * sqrt(Pi) * n^(3/4)), where s = Sum_{k>=2} = 2*(-1)^(k+1)/(((1+sqrt(2))^k + 2/(1 + (1+sqrt(2))^k) - 3)*k) = -0.2731939535370496116124191192900280854879921353977...
MATHEMATICA
nmax=40; cPell[0]=2; cPell[1]=2; cPell[n_]:=cPell[n] = 2*cPell[n-1] + cPell[n-2]; CoefficientList[Series[Product[(1+x^k)^cPell[k], {k, 1, nmax}], {x, 0, nmax}], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Aug 15 2015
STATUS
approved