OFFSET
0,2
COMMENTS
Euler transform of 2 x the characteristic function of the Fibonacci numbers.
LINKS
Robert Israel, Table of n, a(n) for n = 0..10000
FORMULA
G.f.=1/product((1-x^fibonacci(i))^2, i=2..infinity).
EXAMPLE
a(3)=10 because we have 3, 3', 2+1, 2+1', 2'+1, 2'+1', 1+1+1, 1+1+1', 1+1'+1' and 1'+1'+1'.
MAPLE
N:= 12: # to get a(0)..a(M-1) where M = Fibonacci(N-1).
G:= mul(1/(1-x^combinat:-fibonacci(i))^2, i=2..N-1):
S:= series(G, x, combinat:-fibonacci(N)):
seq(coeff(S, x, j), j=0..combinat:-fibonacci(N)-1); # Robert Israel, Dec 01 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Emeric Deutsch, Mar 23 2005
STATUS
approved