A055989 a(n) is its own 4th difference.
1, 3, 10, 36, 131, 476, 1728, 6272, 22765, 82629, 299915, 1088589, 3951206, 14341527, 52054840, 188941273, 685792227, 2489191330, 9034913540, 32793647355, 119029728628, 432037221840, 1568147413312, 5691839002677, 20659429692245, 74986666876571, 272175964826781
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, 3, 10, 36]; [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)^2/(1-5*x+6*x^2-4*x^3+x^4),{x,0,40}],x] (* Vincenzo Librandi, Apr 05 2012 *) LinearRecurrence[{5,-6,4,-1},{1,3,10,36},30] (* Harvey P. Dale, Jan 10 2014 *)
Formula
Extensions
More terms from James Sellers, Jun 05 2000
Comments