OFFSET
0,3
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
S. Falcon, Iterated Binomial Transforms of the k-Fibonacci Sequence, British Journal of Mathematics & Computer Science, 4 (22): 2014.
Index entries for linear recurrences with constant coefficients, signature (12,-34).
FORMULA
a(n) = 12*a(n-1) - 34*a(n-2) with n > 1, a(0)=0, a(1)=1.
G.f.: x/(1 - 12*x + 34*x^2).
a(n) = ((6 + sqrt(2))^n - (6 - sqrt(2))^n)/(2*sqrt(2)).
a(n) = Sum_{k=0..n} C(n,2k+1)*2^k*6^(n-2k-1).
E.g.f.: exp(6*x)*sinh(sqrt(2)*x)/sqrt(2). - Ilya Gutkovskiy, Aug 12 2017
MATHEMATICA
CoefficientList[Series[x / (1 - 12 x + 34 x^2), {x, 0, 20}], x] (* Vincenzo Librandi, Aug 07 2013 *)
PROG
(Sage) [lucas_number1(n, 12, 34) for n in range(0, 21)] # Zerinvary Lajos, Apr 27 2009
(Magma) [n le 2 select n-1 else 12*Self(n-1)-34*Self(n-2): n in [1..25] ]; // Vincenzo Librandi, Aug 07 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paul Barry, Mar 11 2003
STATUS
approved