login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A163067
a(n) = 14*a(n-1) - 44*a(n-2) for n > 1; a(0) = 2, a(1) = 19.
3
2, 19, 178, 1656, 15352, 142064, 1313408, 12136896, 112126592, 1035748864, 9566914048, 88363846656, 816149635072, 7538085638144, 69622614990848, 643040841793536, 5939176725512192, 54854677118255104, 506641703733035008
OFFSET
0,1
COMMENTS
Binomial transform of A163066. Inverse binomial transform of A163068.
FORMULA
a(n) = ((2+sqrt(5))*(7+sqrt(5))^n+(2-sqrt(5))*(7-sqrt(5))^n)/2.
G.f.: (2-9*x)/(1-14*x+44*x^2).
MATHEMATICA
CoefficientList[Series[(2-9*x)/(1-14*x+44*x^2), {x, 0, 50}], x] (* or *) LinearRecurrence[{14, -44}, {2, 19}, 30] (* G. C. Greubel, Dec 22 2017 *)
PROG
(Magma) [ n le 2 select 17*n-15 else 14*Self(n-1)-44*Self(n-2): n in [1..20] ];
(PARI) x='x+O('x^30); Vec((2-9*x)/(1-14*x+44*x^2)) \\ G. C. Greubel, Dec 22 2017
CROSSREFS
Sequence in context: A037574 A037742 A037637 * A221904 A124262 A140781
KEYWORD
nonn
AUTHOR
Klaus Brockhaus, Jul 20 2009
STATUS
approved