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.
%I A129929 #16 Aug 18 2015 00:39:16 %S A129929 1,2,4,7,11,17,29,58,129,292,639,1333,2666,5188,9999,19388,38166, %T A129929 76332,154261,312703,632171,1271107,2542214,5066717,10087066,20099107, %U A129929 40123189,80246378,160689174,321892577,644617194,1290066428,2580132856 %N A129929 Binomial transform of the periodic sequence with periodic pattern 1,1,1,0,0. %H A129929 <a href="/index/Rec">Index entries for linear recurrences with constant coefficients</a>, signature (5,-10,10,-5,2). %F A129929 a(n)=5a(n-1)-10a(n-2)+10a(n-3)-5a(n-4)+2a(n-5). - _R. J. Mathar_, Mar 06 2008 %F A129929 G.f.:-(x^2-x+1)*(x-1)^2/((2*x-1)*(x^4-2*x^3+4*x^2-3*x+1)). - Maksym Voznyy (voznyy(AT)mail.ru), Aug 12 2009 %e A129929 The sequence and first, 2nd, etc. difference are %e A129929 1..2..4..7..11..17..29...58..129..292..639.1333..2666 %e A129929 ..1..2..3..4...6..12..29...71...... %e A129929 ....1..1..1..2...6...17.42...... %e A129929 ......0..0..1..4...11..25..... %e A129929 ........0..1..3...7..14..... %e A129929 ..........1..2..4...7.........<= original series 5 rows above reappears %e A129929 .......... the leading edge of the difference triangle is 5-periodic 1,1,1,0,0. %p A129929 A129929 := proc(n) option remember ; if n <= 4 then op(n+1,[1,2,4,7,11]) ; else 5*A129929(n-1)-10*A129929(n-2)+10*A129929(n-3)-5*A129929(n-4)+2*A129929(n-5) ; fi ; end: seq(A129929(n),n=0..80) ; # _R. J. Mathar_, Mar 06 2008 %t A129929 LinearRecurrence[{5,-10,10,-5,2},{1,2,4,7,11},40] (* _Harvey P. Dale_, Oct 08 2012 *) %K A129929 nonn,easy,less %O A129929 0,2 %A A129929 _Paul Curtz_, Jun 06 2007, Jun 20 2007 %E A129929 Edited by _R. J. Mathar_, Mar 06 2008