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.

A082987 a(n) = Sum_{k=0..n} 3^k*F(k) where F(k) is the k-th Fibonacci number.

This page as a plain text file.
%I A082987 #25 Oct 03 2023 13:11:20
%S A082987 0,3,12,66,309,1524,7356,35787,173568,842790,4090485,19856568,
%T A082987 96384072,467861331,2271040644,11023873914,53510987541,259747827852,
%U A082987 1260842371428,6120257564955,29708354037720,144207380197758
%N A082987 a(n) = Sum_{k=0..n} 3^k*F(k) where F(k) is the k-th Fibonacci number.
%H A082987 Seiichi Manyama, <a href="/A082987/b082987.txt">Table of n, a(n) for n = 0..1000</a>
%H A082987 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (4,6,-9).
%F A082987 a(0)=0, a(1)=3, a(2)=12, a(n)=4a(n-1)+6a(n-2)-9a(n-3).
%F A082987 G.f.: 3*x / ((x-1)*(9*x^2+3*x-1)). - _Colin Barker_, Jun 26 2013
%t A082987 LinearRecurrence[{4,6,-9},{0,3,12},30] (* _Harvey P. Dale_, Feb 03 2019 *)
%o A082987 (PARI) a(n)=if(n<0,0,sum(k=0,n,fibonacci(k)*3^k))
%Y A082987 Cf. A014334, A082988, A119282.
%K A082987 nonn,easy
%O A082987 0,2
%A A082987 _Benoit Cloitre_, May 29 2003
%E A082987 Offset changed to 0 by _Seiichi Manyama_, Oct 03 2023