A111216 a(n) = 31*a(n-1)-a(n-2).
1, 30, 929, 28769, 890910, 27589441, 854381761, 26458245150, 819351217889, 25373429509409, 785756963573790, 24333092441278081, 753540108716046721, 23335410277756170270, 722644178501725231649, 22378634123275726010849, 693015013643045781104670
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..200
- Tanya Khovanova, Recursive Sequences
- Index entries for linear recurrences with constant coefficients, signature (31,-1).
Programs
-
Magma
I:=[1,30]; [n le 2 select I[n] else 31*Self(n-1)-Self(n-2): n in [1..20]]; // Vincenzo Librandi, Feb 26 2014
-
Mathematica
CoefficientList[Series[(1 - x)/(1 - 31 x + x^2), {x, 0, 40}], x] (* Vincenzo Librandi, Feb 26 2014 *)
-
PARI
Vec((1-x)/(1-31*x+x^2) + O(x^100)) \\ Colin Barker, Feb 24 2014
Formula
G.f.: (1-x)/(1-31*x+x^2). [Philippe Deléham, Nov 18 2008]
Comments