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!)
A206612 Fibonacci sequence beginning 13, 6. 1
13, 6, 19, 25, 44, 69, 113, 182, 295, 477, 772, 1249, 2021, 3270, 5291, 8561, 13852, 22413, 36265, 58678, 94943, 153621, 248564, 402185, 650749, 1052934, 1703683, 2756617, 4460300, 7216917, 11677217, 18894134, 30571351, 49465485, 80036836, 129502321 (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) = 13*Fibonacci(n) - 7*Fibonacci(n-1).
G.f.: x*(13 - 7*x)/(1 - x - x^2).
(End)
MATHEMATICA
LinearRecurrence[{1, 1}, {13, 6}, 80]
PROG
(Magma) I:=[13, 6]; [n le 2 select I[n] else Self(n-1)+Self(n-2): n in [1..40]]; \\ Vincenzo Librandi, Feb 17 2012
(PARI) Vec((13 - 7*x)/(1 - x - x^2) + O(x^30)) \\ Andrew Howroyd, Aug 28 2018
CROSSREFS
Sequence in context: A004478 A300504 A168210 * A220131 A268723 A300942
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 April 25 05:55 EDT 2024. Contains 371964 sequences. (Running on oeis4.)