cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A200069 a(n) = 4*a(n-1) + 13*a(n-2) for n>2, a(1)=1, a(2)=4.

Original entry on oeis.org

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

Views

Author

Sture Sjöstedt, Nov 13 2011

Keywords

Comments

De Moivres formula : a(n)=(r^n-s^n)/(r-s), for r>s gives sequences with integers if r and s are conjugates. With r=2+sqrt(17) and s=2-sqrt(17), a(n+1)/a(n) converges to 2+sqrt(17).

Examples

			a(3) = 4*4+13*1 = 29.
		

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