A098149 a(0)=-1, a(1)=-1, a(n)=-3*a(n-1)-a(n-2) for n>1.
-1, -1, 4, -11, 29, -76, 199, -521, 1364, -3571, 9349, -24476, 64079, -167761, 439204, -1149851, 3010349, -7881196, 20633239, -54018521, 141422324, -370248451, 969323029, -2537720636, 6643838879, -17393796001, 45537549124, -119218851371
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
- Seong Ju Kim, R. Stees, and L. Taalman, Sequences of Spiral Knot Determinants, Journal of Integer Sequences, Vol. 19 (2016), #16.1.4.
- Tanya Khovanova, Recursive Sequences
- Ryan Stees, Sequences of Spiral Knot Determinants, Senior Honors Projects, Paper 84, James Madison Univ., May 2016.
- Index entries for linear recurrences with constant coefficients, signature (-3,-1).
- Index entries for sequences related to Chebyshev polynomials.
Programs
-
Mathematica
a[0] = a[1] = -1; a[n_] := a[n] = -3a[n - 2] - a[n - 1]; Table[ a[n], {n, 0, 27}] (* Robert G. Wilson v, Sep 01 2004 *) LinearRecurrence[{-3,-1},{-1,-1},30] (* Harvey P. Dale, Apr 19 2014 *) CoefficientList[Series[-(1 + 4 x)/(1 + 3 x + x^2), {x, 0, 40}], x] (* Vincenzo Librandi, Apr 19 2014 *)
Formula
G.f.: -(1+4*x)/(1+3*x+x^2). - Philippe Deléham, Nov 19 2006
a(n) = (-1)^n*A002878(n-1). - R. J. Mathar, Jan 30 2011
-a(n+1) = Sum_{k, 0<=k<=n}(-5)^k*Binomial(n+k, n-k) = Sum_{k, 0<=k<=n}(-5)^k*A085478(n, k). - Philippe Deléham, Nov 28 2006
a(n) = (-1)^n*(S(n-1, 3) + S(n-2, 3)) = (-1)^n*S(2*(n-1), sqrt(5)), for n >= 0, with Chebyshev S polynomials (A049310), with S(-1, x) = 0 and S(-2, x) = -1. S(n, 3) = A001906(n+1) = F(2*(n+1)), with F = A000045. - Wolfdieter Lang, Oct 12 2020
Extensions
Simpler definition from Philippe Deléham, Nov 19 2006
Comments