OFFSET
0,3
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (8,-3).
FORMULA
a(n) = ((4 + sqrt(13))^n - (4 - sqrt(13))^n)/(2*sqrt(13)). - Giorgio Balzarotti, May 28 2011
G.f.: x/(1 - 8*x + 3*x^2). - Philippe Deléham, Oct 12 2011
From G. C. Greubel, Jun 11 2022: (Start)
a(n) = 3^((n-1)/2)*ChebyshevU(n-1, 4/sqrt(3)).
E.g.f.: (1/sqrt(13))*exp(4*x)*sinh(sqrt(13)*x). (End)
MATHEMATICA
LinearRecurrence[{8, -3}, {0, 1}, 50]
PROG
(Magma) [n le 2 select n-1 else 8*Self(n-1) - 3*Self(n-2): n in [1..51]]; // G. C. Greubel, Jun 11 2022
(SageMath) [lucas_number1(n, 8, 3) for n in (0..50)] # G. C. Greubel, Jun 11 2022
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vladimir Joseph Stephan Orlovsky, May 24 2011
STATUS
approved