cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A103344 Number of representations of n as a sum of distinct elements of the Fibonacci-type sequence beginning 1, 4, 5, 9, 14, 23, 37, 60, ....

Original entry on oeis.org

1, 1, 0, 0, 1, 2, 1, 0, 0, 2, 2, 0, 0, 1, 3, 2, 0, 0, 2, 3, 1, 0, 0, 3, 3, 0, 0, 2, 4, 2, 0, 0, 3, 3, 0, 0, 1, 4, 3, 0, 0, 3, 5, 2, 0, 0, 4, 4, 0, 0, 2, 5, 3, 0, 0, 3, 4, 1, 0, 0, 4, 4, 0, 0, 3, 6, 3, 0, 0, 5, 5, 0, 0, 2, 6, 4, 0, 0, 4, 6, 2, 0, 0, 5, 5, 0, 0, 3, 6, 3, 0, 0, 4, 4, 0, 0, 1, 5, 4, 0, 0
Offset: 0

Views

Author

Casey Mongoven, Feb 01 2005

Keywords

Crossrefs

Programs

  • 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 *)

Extensions

a(0)=1 corrected by Alois P. Heinz, Sep 16 2015