OFFSET
0,5
COMMENTS
The coefficient of q^0 in nu(n) is the Fibonacci number F(n+1). The coefficient of q^1 is A023610(n-3).
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 (3,0,-5,0,3,1).
FORMULA
G.f.: (2*x^4-2*x^6-x^7)/(1-x-x^2)^3.
a(n) = 3*a(n-1)-5*a(n-3)+3*a(n-5)+a(n-6) for n>=8.
EXAMPLE
The first 6 nu polynomials are nu(0)=1, nu(1)=1, nu(2)=2, nu(3)=3+q, nu(4)=5+3q+2q^2, nu(5)=8+7q+6q^2+4q^3+q^4, so the coefficients of q^2 are 0,0,0,0,2,6.
MATHEMATICA
b=1; 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[{3, 0, -5, 0, 3, 1}, {0, 0, 2, 6, 16, 37}, 32]] (* Jean-François Alcover, Sep 23 2017 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Y. Kelly Itakura (yitkr(AT)mta.ca), Aug 19 2002
EXTENSIONS
Edited by Dean Hickerson, Aug 21 2002
STATUS
approved