OFFSET
0,2
COMMENTS
Binomial transform of A145302. Inverse binomial transform of A152266. - Philippe Deléham, Dec 03 2008
LINKS
Paolo Xausa, Table of n, a(n) for n = 0..973
Index entries for linear recurrences with constant coefficients, signature (16,-57).
FORMULA
From Philippe Deléham, Dec 03 2008: (Start)
a(n) = 16*a(n-1) - 57*a(n-2), n > 1; a(0)=1, a(1)=8.
G.f.: (1-8*x)/(1-16*x+57*x^2).
a(n) = Sum_{k=0..n} A098158(n,k)*8^(2k-n)*7^(n-k). (End)
MATHEMATICA
LinearRecurrence[{16, -57}, {1, 8}, 25] (* Paolo Xausa, Jul 21 2026 *)
PROG
(Magma) Z<x>:= PolynomialRing(Integers()); N<r7>:=NumberField(x^2-7); S:=[ ((8+r7)^n+(8-r7)^n)/2: n in [0..17] ]; [ Integers()!S[j]: j in [1..#S] ]; // Klaus Brockhaus, Dec 03 2008
(PARI) a(n)=([0, 1; -57, 16]^n*[1; 8])[1, 1] \\ Charles R Greathouse IV, May 30 2026
CROSSREFS
KEYWORD
nonn,easy,changed
AUTHOR
Al Hakanson (hawkuu(AT)gmail.com), Dec 01 2008
EXTENSIONS
Extended beyond a(6) by Klaus Brockhaus, Dec 03 2008
More terms from Paolo Xausa, Jul 21 2026
STATUS
approved
