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.

A208481 Diagonal sums of triangle A185384.

This page as a plain text file.
%I A208481 #29 Mar 28 2024 16:11:46
%S A208481 1,2,6,19,60,188,589,1846,5786,18135,56840,178152,558377,1750106,
%T A208481 5485310,17192459,53885860,168892996,529356757,1659148590,5200224626,
%U A208481 16298923631,51085276240,160115201936,501844754065,1572918462066,4929955864374,15451827549123
%N A208481 Diagonal sums of triangle A185384.
%H A208481 Vincenzo Librandi, <a href="/A208481/b208481.txt">Table of n, a(n) for n = 0..1000</a>
%H A208481 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (3,0,1,1).
%F A208481 a(n) = Sum_{k=0..floor(n/2)} binomial(n-k,k)*F(2*n-3*k+1), where F(n) are the Fibonacci numbers (A000045).
%F A208481 G.f.: (1 - x)/(1 - 3*x - x^3 - x^4).
%F A208481 a(n) = 3*a(n-1) + a(n-3) + a(n-4).
%t A208481 Table[Sum[Binomial[n-k,k]Fibonacci[2n-3k+1],{k,0,Floor[n/2]}],{n,0,100}]
%o A208481 (Maxima) makelist(sum(binomial(n-k,k)*fib(2*n-3*k+1),k,0,floor(n/2)),n,0,27);
%Y A208481 Cf. A185384.
%K A208481 nonn,easy
%O A208481 0,2
%A A208481 _Emanuele Munarini_, Feb 29 2012