OFFSET
0,6
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..19308
J. Berstel, An Exercise on Fibonacci Representations, RAIRO/Informatique Theorique, Vol. 35, No 6, 2001, pp. 491-498, in the issue dedicated to Aldo De Luca on the occasion of his 60th anniversary.
D. A. Klarner, Representations of N as a sum of distinct elements from special sequences, part 1, part 2, Fib. Quart., 4 (1966), 289-306 and 322.
Ron Knott, Ron Knott's Sequence Visualiser.
Casey Mongoven, U(n) Rep Sequence no. 1; electronic music created with this sequence.
Casey Mongoven, Sonification of multiple Fibonacci-related sequences, Annales Mathematicae et Informaticae, 41 (2013) pp. 175-192.
MATHEMATICA
imax = 10;
f[1] = 1; f[2] = 4; f[n_] := f[n] = f[n-1] + f[n-2];
p = Product[1+x^f[i], {i, 1, imax}];
CoefficientList[p, x][[1;; f[imax]+1]] (* Jean-François Alcover, May 08 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Casey Mongoven, Feb 01 2005
EXTENSIONS
a(0)=1 corrected by Alois P. Heinz, Sep 16 2015
STATUS
approved