OFFSET
1,4
REFERENCES
A. Brousseau, Fibonacci and Related Number Theoretic Tables. Fibonacci Association, San Jose, CA, 1972, p. 58.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
T. D. Noe, Table of n, a(n) for n = 1..9349
Alfred Brousseau, Fibonacci and Related Number Theoretic Tables, Fibonacci Association, San Jose, CA, 1972. See p. 58.
Casey Mongoven, Sonification of multiple Fibonacci-related sequences, Annales Mathematicae et Informaticae, 41 (2013) pp. 175-192.
FORMULA
G.f.: Product_{n>=1} (1 + x^L(n)) where L(n) = A000204(n). - Joerg Arndt, Jul 14 2013
MATHEMATICA
n1 = 10; n2 = LucasL[n1]; Product[1 + x^LucasL[n], {n, 1, n1}] + O[x]^n2 // CoefficientList[#, x]& // Rest (* 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=1, 11, 1 + x^L(n) );
Vec(gf) \\ Joerg Arndt, Jul 14 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from James A. Sellers, May 29 2000
STATUS
approved