OFFSET
0,1
COMMENTS
Number of partitions of n with an even number of distinct Fibonacci parts minus the number of partitions of n with an odd number of distinct Fibonacci parts.
Every term is -1, 0 or 1.
LINKS
T. D. Noe, Table of n, a(n) for n = 0..1000
F. Ardila, The Coefficients of a Fibonacci power series, arXiv:math/0409418 [math.CO], 2004.
Neville Robbins, Fibonacci partitions, The Fibonacci Quarterly, 34.4 (1996), pp. 306-313.
Yufei Zhao, The coefficients of a truncated Fibonacci power series, Fib. Q., 46/47 (2008/2009), 53-55.
EXAMPLE
G.f. = 1 - x - x^2 + x^4 + x^7 - x^8 + x^11 - x^12 - x^13 + x^14 + x^18 - x^19 - x^20 + x^22 + x^23 - x^24 + x^29 - x^30 - x^31 + x^33 + x^36 - x^38 - x^39 + x^40 + x^47 - ... - N. J. A. Sloane, May 30 2009
MATHEMATICA
Take[ CoefficientList[ Expand[ Product[1 - x^Fibonacci[k], {k, 2, 13}]], x], 105] (* Robert G. Wilson v, May 29 2004 *)
nn = 11; Take[CoefficientList[Expand[Product[1 - x^Fibonacci[n], {n, 2, nn}]], x], Fibonacci[nn+1]] (* T. D. Noe, Feb 27 2014 *)
PROG
(Magma) R<x>:=PowerSeriesRing(Integers(), 115); Coefficients(R!( (&*[1-x^Fibonacci(j): j in [2..13]]) )); // G. C. Greubel, Dec 27 2021
(Sage) [( product( 1-x^fibonacci(j) for j in (2..14) ) ).series(x, n+1).list()[n] for n in (0..115)] # G. C. Greubel, Dec 27 2021
CROSSREFS
KEYWORD
easy,sign
AUTHOR
N. Sato, May 24 2004
EXTENSIONS
Edited and extended by Robert G. Wilson v, May 29 2004
STATUS
approved