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 (9,3).
FORMULA
a(n) = ((9+sqrt(93))^n - (9-sqrt(93))^n)/(2^n*sqrt(93)). - Rolf Pleisch, May 14 2011
G.f.: x/(1 - 9*x - 3*x^2). - Philippe Deléham, Nov 21 2011
a(n+1) = Sum_{k=0..n} A099097(n,k)*3^k. - Philippe Deléham, Nov 21 2011
E.g.f.: 2*exp(9*x/2)*sinh(sqrt(93)*x/2)/sqrt(93). - Stefano Spezia, Apr 06 2023
MATHEMATICA
Join[{a=0, b=1}, Table[c=9*b+3*a; a=b; b=c, {n, 60}]]
LinearRecurrence[{9, 3}, {0, 1}, 30] (* G. C. Greubel, Jan 24 2018 *)
PROG
(PARI) x='x+O('x^30); concat([0], Vec(x/(1-9*x-3*x^2))) \\ G. C. Greubel, Jan 24 2018
(Magma) I:=[0, 1]; [n le 2 select I[n] else 9*Self(n-1) + 3*Self(n-2): n in [1..30]];
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vladimir Joseph Stephan Orlovsky, Jan 27 2011
STATUS
approved