login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A082987 a(n) = Sum_{k=0..n} 3^k*F(k) where F(k) is the k-th Fibonacci number. 2
0, 3, 12, 66, 309, 1524, 7356, 35787, 173568, 842790, 4090485, 19856568, 96384072, 467861331, 2271040644, 11023873914, 53510987541, 259747827852, 1260842371428, 6120257564955, 29708354037720, 144207380197758 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0)=0, a(1)=3, a(2)=12, a(n)=4a(n-1)+6a(n-2)-9a(n-3).
G.f.: 3*x / ((x-1)*(9*x^2+3*x-1)). - Colin Barker, Jun 26 2013
MATHEMATICA
LinearRecurrence[{4, 6, -9}, {0, 3, 12}, 30] (* Harvey P. Dale, Feb 03 2019 *)
PROG
(PARI) a(n)=if(n<0, 0, sum(k=0, n, fibonacci(k)*3^k))
CROSSREFS
Sequence in context: A144297 A007017 A183273 * A086836 A074513 A290147
KEYWORD
nonn,easy
AUTHOR
Benoit Cloitre, May 29 2003
EXTENSIONS
Offset changed to 0 by Seiichi Manyama, Oct 03 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)