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.

This page as a plain text file.
%I A036796 #6 Mar 30 2012 18:37:41
%S A036796 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,
%T A036796 49,50,51,53,54,55,56,90,91,92,93,95,96,97,98,103,104,105,106,108,109,
%U A036796 110,111,124,125,126,127,129,130,131,132,137,138,139,140,142,143,144
%N A036796 Integers that can be decomposed into sums of different Fibonacci numbers of odd argument.
%t A036796 FoldList[ #1+#2&, 1, Fold[ {#1, #2, #1}&, 1, Table[ Fibonacci[ k ], {k, 1, 13, 2} ] ]//Flatten ]
%Y A036796 Cf. A036795.
%K A036796 nonn
%O A036796 0,2
%A A036796 _Wouter Meeussen_