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.

A036795 Integers that can be decomposed into sums of different Fibonacci numbers of even argument.

This page as a plain text file.
%I A036795 #6 Mar 30 2012 18:37:41
%S A036795 1,2,4,5,9,10,12,13,22,23,25,26,30,31,33,34,56,57,59,60,64,65,67,68,
%T A036795 77,78,80,81,85,86,88,89,145,146,148,149,153,154,156,157,166,167,169,
%U A036795 170,174,175,177,178,200,201,203,204,208,209,211,212,221,222,224,225
%N A036795 Integers that can be decomposed into sums of different Fibonacci numbers of even argument.
%t A036795 FoldList[ #1+#2&, 1, Fold[ {#1, #2, #1}&, 1, 1+Table[ Fibonacci[ k ], {k, 2, 15, 2} ] ]//Flatten ]
%Y A036795 Cf. A036796.
%K A036795 nonn
%O A036795 0,2
%A A036795 _Wouter Meeussen_