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!)
A022116 Fibonacci sequence beginning 2, 13. 3
2, 13, 15, 28, 43, 71, 114, 185, 299, 484, 783, 1267, 2050, 3317, 5367, 8684, 14051, 22735, 36786, 59521, 96307, 155828, 252135, 407963, 660098, 1068061, 1728159, 2796220, 4524379, 7320599, 11844978, 19165577, 31010555, 50176132, 81186687, 131362819 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
Tanya Khovanova, Recursive Sequences
FORMULA
G.f.: (2 + 11*x)/(1-x-x^2). - Philippe Deléham, Nov 19 2008
a(n) = 4*Fibonacci(n+2) + 3*Fibonacci(n+3) - 4*Lucas(n). - Lechoslaw Ratajczak, Feb 10 2020
E.g.f.: (2/5)*exp(x/2)*(5*cosh(sqrt(5)*x/2) + 12*sqrt(5)*sinh(sqrt(5)*x/2)). - Stefano Spezia, Feb 11 2020
a(n) = 2*Fibonacci(n+2) + 9*Fibonacci(n). - G. C. Greubel, Feb 12 2020
MAPLE
seq( 2*fibonacci(n+2) +9*fibonacci(n), n=0..40); # G. C. Greubel, Feb 12 2020
MATHEMATICA
CoefficientList[Series[(2+11x)/(1-x-x^2), {x, 0, 40}], x] (* Wesley Ivan Hurt, Jun 15 2014 *)
LinearRecurrence[{1, 1}, {2, 13}, 50] (* Harvey P. Dale, Jun 20 2017 *)
PROG
(Magma) a:=[2, 13]; [n le 2 select a[n] else Self(n-1)+Self(n-2): n in [1..36]]; // Marius A. Burtea, Feb 11 2020
(Magma) R<x>:=PowerSeriesRing(Integers(), 36); Coefficients(R!( (2+11*x)/(1-x-x^2))); // Marius A. Burtea, Feb 11 2020
(PARI) vector(41, n, my(m=n-1, f=fibonacci); 2*f(m+2) + 9*f(m) ) \\ G. C. Greubel, Feb 12 2020
(Sage) [2*fibonacci(n+2) + 9*fibonacci(n) for n in (0..40)] # G. C. Greubel, Feb 12 2020
CROSSREFS
Sequence in context: A015905 A179164 A356102 * A041201 A042155 A295336
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jun 14 1998
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 23 01:19 EDT 2024. Contains 371906 sequences. (Running on oeis4.)