A200069 a(n) = 4*a(n-1) + 13*a(n-2) for n>2, a(1)=1, a(2)=4.
1, 4, 29, 168, 1049, 6380, 39157, 239568, 1467313, 8983636, 55009613, 336825720, 2062427849, 12628445756, 77325345061, 473471175072, 2899114186081, 17751582020260, 108694812500093, 665549816263752, 4075231827556217, 24953074921653644, 152790313444845397
Offset: 1
Examples
a(3) = 4*4+13*1 = 29.
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..1000
- Index entries for linear recurrences with constant coefficients, signature (4,13).
Crossrefs
Cf. A041025.
Programs
-
Haskell
a200069 n = a200069_list !! (n-1) a200069_list = 1 : 4 : zipWith (+) (map (* 4) $ tail a200069_list) (map (* 13) a200069_list) -- Reinhard Zumkeller, Nov 15 2011
-
Mathematica
LinearRecurrence[{4,13}, {1,4}, 50]
Formula
a(n) = ((2+sqrt(17))^n-(2-sqrt(17))^n)/(2*sqrt(17)).
G.f.: x/(1-4*x-13*x^2). - Bruno Berselli, Nov 15 2011
Extensions
More terms from Bruno Berselli, Nov 15 2011
Comments