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 A109222 #12 Mar 10 2019 01:43:12 %S A109222 1,2,3,6,11,21,40,76,145,276,526,1002,1909,3637,6929,13201,25150, %T A109222 47915,91286,173915,331337,631252,1202640,2291229,4365172,8316378, %U A109222 15844082,30185609,57508601,109563441,208736561,397677834,757642355,1443434582 %N A109222 Row sums of a triangle related to the Fibonacci polynomials. %C A109222 Row sums of A109221. %C A109222 The Kn4 sums, see A180662, of triangle A065941 equal the terms of this sequence a(n) while the Kn4 sums of triangle A194005 equal a(n+1)-1. - _Johannes W. Meijer_, Aug 14 2011 %H A109222 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (1,2,0,-1). %F A109222 G.f.: (1 + x - x^2 - x^3)/(1 - x - 2x^2 + x^4); %F A109222 a(n) = a(n-1) + 2a(n-2) - a(n-4); %F A109222 a(n) = Sum_{k=0..n} binomial(floor((2n-k)/2)+n-k, 2n-2k). %p A109222 A109222 := proc(n): add(binomial(floor((2*n-k)/2)+n-k, 2*n-2*k), k=0..n) end: seq(A109222(n), n=0..33); # _Johannes W. Meijer_, Aug 14 2011 %K A109222 easy,nonn %O A109222 0,2 %A A109222 _Paul Barry_, Jun 22 2005