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.

A036796 Integers that can be decomposed into sums of different Fibonacci numbers of odd argument.

Original entry on oeis.org

1, 2, 3, 4, 6, 7, 8, 9, 14, 15, 16, 17, 19, 20, 21, 22, 35, 36, 37, 38, 40, 41, 42, 43, 48, 49, 50, 51, 53, 54, 55, 56, 90, 91, 92, 93, 95, 96, 97, 98, 103, 104, 105, 106, 108, 109, 110, 111, 124, 125, 126, 127, 129, 130, 131, 132, 137, 138, 139, 140, 142, 143, 144
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A036795.

Programs

  • Mathematica
    FoldList[ #1+#2&, 1, Fold[ {#1, #2, #1}&, 1, Table[ Fibonacci[ k ], {k, 1, 13, 2} ] ]//Flatten ]