OFFSET
0,5
COMMENTS
The coefficient of q^0 is the Pell number A000129(n+1).
LINKS
M. Beattie, S. Dăscălescu and S. Raianu, Lifting of Nichols Algebras of Type B_2, arXiv:math/0204075 [math.QA], 2002.
Index entries for linear recurrences with constant coefficients, signature (6, -9, -4, 9, 6, 1).
FORMULA
G.f.: (5*x^4 - 6*x^5 - 8*x^6 - 2*x^7)/(1 - 2*x - x^2)^3.
a(n) = 6*a(n-1) - 9*a(n-2) - 4*a(n-3) + 9*a(n-4) + 6*a(n-5) + a(n-6) for n >= 8.
EXAMPLE
The first 6 nu polynomials are nu(0) = 1, nu(1) = 2, nu(2) = 5, nu(3) = 12 + 2*q, nu(4) = 29 + 9*q + 5*q^2, nu(5) = 70 + 32q + 24*q^2 + 14*q^3 + 2*q^4, so the coefficients of q^2 are 0,0,0,0,5,24.
MATHEMATICA
b=2; lambda=1; expon=2; nu[0]=1; nu[1]=b; nu[n_] := nu[n]=Together[b*nu[n-1]+lambda(1-q^(n-1))/(1-q)nu[n-2]]; a[n_] := Coefficient[nu[n], q, expon]
(* Second program: *)
Join[{0, 0}, LinearRecurrence[{6, -9, -4, 9, 6, 1}, {0, 0, 5, 24, 91, 308}, 30]] (* Jean-François Alcover, Dec 13 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Y. Kelly Itakura (yitkr(AT)mta.ca), Aug 19 2002
EXTENSIONS
Edited by Dean Hickerson, Aug 21 2002
STATUS
approved