A055988 Sequence is its own 4th difference.
1, 2, 7, 26, 95, 345, 1252, 4544, 16493, 59864, 217286, 788674, 2862617, 10390321, 37713313, 136886433, 496850954, 1803399103, 6545722210, 23758733815, 86236081273, 313007493212, 1136110191472, 4123691589365, 14967590689568
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
- Index entries for linear recurrences with constant coefficients, signature (5,-6,4,-1).
Crossrefs
Programs
-
Magma
I:=[1, 2, 7, 26]; [n le 4 select I[n] else 5*Self(n-1)-6*Self(n-2)+4*Self(n-3)-Self(n-4): n in [1..30]]; // Vincenzo Librandi, Apr 05 2012
-
Mathematica
CoefficientList[Series[(1-x)^3/(1-5x+6x^2-4x^3+x^4),{x,0,40}],x] (* Vincenzo Librandi, Apr 05 2012 *) LinearRecurrence[{5,-6,4,-1},{1,2,7,26},30] (* Harvey P. Dale, Jan 15 2017 *)
Formula
Extensions
More terms from James Sellers, Jun 05 2000
Comments