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!)
A121990 Expansion of x*(1+9*x+2*x^2)/((1-x)*(1-3*x+x^2)). 1
1, 13, 50, 149, 409, 1090, 2873, 7541, 19762, 51757, 135521, 354818, 928945, 2432029, 6367154, 16669445, 43641193, 114254146, 299121257, 783109637, 2050207666, 5367513373, 14052332465, 36789484034, 96316119649, 252158874925 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = 3*a(n - 1) - a(n - 2) + 12.
a(n) = (1/10)*(-120 + (65 - 11*sqrt(5))*((1/2)*(3 - sqrt(5)))^n + ((1/2)*(3 + sqrt(5)))^n*(65 + 11*sqrt(5))).
From R. J. Mathar, Apr 04 2009: (Start)
a(n) = 4*a(n-1) - 4*a(n-2) + a(n-3).
G.f.: x*(1+9*x+2*x^2)/((1-x)*(1-3*x+x^2)). (End)
a(n) = 12*Fibonacci(2*n-1) + Fibonacci(2*n-3) - 12. - G. C. Greubel, Nov 21 2019
MAPLE
with(combinat); seq(12*fibonacci(2*n-1) +fibonacci(2*n-3) -12, n=1..30); # G. C. Greubel, Nov 21 2019
MATHEMATICA
LinearRecurrence[{4, -4, 1}, {1, 13, 50}, 30] (* G. C. Greubel, Sep 14 2017 *)
With[{F=Fibonacci}, Table[12*(F[2*n-1]-1) + F[2*n-3], {n, 30}]] (* G. C. Greubel, Nov 21 2019 *)
PROG
(PARI) x='x+O('x^30); Vec(x*(1+9*x+2*x^2)/((1-x)*(x^2-3*x+1))) \\ G. C. Greubel, Sep 14 2017
(PARI) vector(30, n, 12*fibonacci(2*n-1) +fibonacci(2*n-3) -12) \\ G. C. Greubel, Nov 21 2019
(Magma) F:= Fibonacci; [12*F(2*n-1) +F(2*n-3) -12: n in [1..30]]; // G. C. Greubel, Nov 21 2019
(Sage) f=fibonacci; [12*f(2*n-1) + f(2*n-3) -12 for n in (1..30)] # G. C. Greubel, Nov 21 2019
(GAP) F:=Fibonacci;; List([1..30], n-> 12*F(2*n-1) +F(2*n-3) -12 ); # G. C. Greubel, Nov 21 2019
CROSSREFS
Sequence in context: A209995 A050410 A121991 * A050491 A332589 A022283
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Sep 10 2006
EXTENSIONS
Edited and new name based on g.f. by G. C. Greubel and Joerg Arndt, Sep 14 2017
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 May 13 17:28 EDT 2024. Contains 372522 sequences. (Running on oeis4.)