The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A276139 Series expansion of (1 + 2x + 4x^2)/(1 - 3x - 5x^2). 0
1, 5, 24, 97, 411, 1718, 7209, 30217, 126696, 531173, 2226999, 9336862, 39145581, 164121053, 688091064, 2884878457, 12095090691, 50709664358, 212604446529, 891361661377, 3737107216776, 15668129957213, 65689925955519, 275410427652622, 1154680912735461, 4841094876469493 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0)=1, a(1)=5, a(2)=24, a(n) = 3*a(n-1) + 5*a(n-2) for n>2.
MATHEMATICA
CoefficientList[ Series[(1 + 2x + 4x^2)/(1 - 3x - 5x^2), {x, 0, 25}], x]
a[0] = 1; a[1] = 5; a[2] = 24; a[n_] := 3 a[n - 1] + 5 a[n - 2]; Array[a, 26, 0]
Join[{1}, LinearRecurrence[{3, 5}, {5, 24}, 25]]
PROG
(PARI) Vec((1 + 2*x + 4*x^2)/(1 - 3*x - 5*x^2) + O(x^30)) \\ Michel Marcus, Oct 03 2016
CROSSREFS
Sequence in context: A087095 A099653 A270126 * A078820 A291395 A179417
KEYWORD
nonn,easy
AUTHOR
Robert G. Wilson v, Sep 28 2016
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 June 4 19:15 EDT 2024. Contains 373102 sequences. (Running on oeis4.)