OFFSET
0,4
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..15127
FORMULA
G.f.: B(x) * (1 + x^2) where B(x) is the g.f. of A003263. [Joerg Arndt, Jul 14 2013]
MATHEMATICA
n1 = 10; n2 = LucasL[n1]; (1 + x^2)*Product[1 + x^LucasL[n], {n, 1, n1}] + O[x]^n2 // CoefficientList[#, x]& (* Jean-François Alcover, Feb 17 2017, after Joerg Arndt *)
PROG
(PARI)
L(n) = fibonacci(n+1) + fibonacci(n-1);
N = 66; x = 'x + O('x^N);
gf = prod(n=0, 11, 1 + x^L(n) );
\\gf = prod(n=1, 11, 1 + x^L(n) ) * (1+x^2); \\ same g.f.
Vec(gf) \\ Joerg Arndt, Jul 14 2013
CROSSREFS
KEYWORD
AUTHOR
Naohiro Nomoto, Jan 31 2002
EXTENSIONS
Corrected a(0), Joerg Arndt, Jul 14 2013
STATUS
approved