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!)
A206422 Fibonacci sequence beginning 11, 9. 1
11, 9, 20, 29, 49, 78, 127, 205, 332, 537, 869, 1406, 2275, 3681, 5956, 9637, 15593, 25230, 40823, 66053, 106876, 172929, 279805, 452734, 732539, 1185273, 1917812, 3103085, 5020897, 8123982, 13144879, 21268861, 34413740, 55682601, 90096341, 145778942 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
From Andrew Howroyd, Aug 28 2018: (Start)
a(n) = a(n-1) + a(n-2) for n > 2.
a(n) = 11*Fibonacci(n) - 2*Fibonacci(n-1).
G.f.: x*(11 - 2*x)/(1 - x - x^2). (End)
MATHEMATICA
LinearRecurrence[{1, 1}, {11, 9}, 60]
PROG
(Magma) I:=[11, 9]; [n le 2 select I[n] else Self(n-1)+ Self(n-2): n in [1..40]]; \\ Vincenzo Librandi, Feb 18 2012
(PARI) Vec((11 - 2*x)/(1 - x - x^2) + O(x^30)) \\ Andrew Howroyd, Aug 28 2018
CROSSREFS
Cf. A000045.
Sequence in context: A337227 A254716 A240757 * A316450 A196006 A196003
KEYWORD
nonn,easy
AUTHOR
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 27 03:56 EDT 2024. Contains 372847 sequences. (Running on oeis4.)