login
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
OFFSET
1,1
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
KEYWORD
nonn,easy
AUTHOR
STATUS
approved