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.

A033190 a(n) = Sum_{k=0..n} binomial(n,k) * binomial(Fibonacci(k)+1,2).

This page as a plain text file.
%I A033190 #27 Aug 04 2021 21:05:13
%S A033190 0,1,3,9,28,90,297,1001,3431,11917,41820,147918,526309,1881009,
%T A033190 6744843,24244145,87300092,314765506,1135980801,4102551897,
%U A033190 14823628015,53581222773,193724727804,700551945014,2533702591613,9164618329825,33151607475987,119927166988761
%N A033190 a(n) = Sum_{k=0..n} binomial(n,k) * binomial(Fibonacci(k)+1,2).
%C A033190 Number of (s(0), s(1), ..., s(2n)) such that 0 < s(i) < 10 and |s(i) - s(i-1)| = 1 for i = 1,2,...,2n, s(0) = 1, s(2n) = 3. - _Herbert Kociemba_, Jun 14 2004
%H A033190 Michael De Vlieger, <a href="/A033190/b033190.txt">Table of n, a(n) for n = 0..1792</a>
%H A033190 László Németh and László Szalay, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL24/Nemeth/nemeth8.html">Sequences Involving Square Zig-Zag Shapes</a>, J. Int. Seq., Vol. 24 (2021), Article 21.5.2.
%H A033190 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (8,-21,20,-5).
%F A033190 G.f.: (-x^4+6x^3-5x^2+x)/((1-3x+x^2)*(1-5x+5x^2)).
%F A033190 From _Herbert Kociemba_, Jun 14 2004: (Start)
%F A033190 a(n) = (1/5)*Sum_{r=1..9} sin(r*Pi/10)*sin(3*r*Pi/10)*(2*cos(r*Pi/10))^(2*n), n >= 1.
%F A033190 a(n) = 8*a(n-1) - 21*a(n-2) + 20*a(n-3) - 5*a(n-4), n >= 5. (End)
%F A033190 From _Greg Dresden_, Jan 24 2021: (Start)
%F A033190 a(2n) = (5*Fibonacci(4*n) + (5^n)*Lucas(2*n))/10 for n > 0.
%F A033190 a(2n+1) = (Fibonacci(4*n+2) + (5^n)*Fibonacci(2*n+1))/2 for n >= 0.
%F A033190 (End)
%p A033190 A033190 := proc(n)
%p A033190     add(binomial(n,k)*binomial(combinat[fibonacci](k)+1,2),k=0..n) ;
%p A033190 end proc: # _R. J. Mathar_, Feb 18 2016
%t A033190 LinearRecurrence[{8,-21,20,-5},{0,1,3,9,28},30] (* _Harvey P. Dale_, Jan 24 2019 *)
%K A033190 nonn,easy
%O A033190 0,3
%A A033190 _N. J. A. Sloane_