a(n) = 4*a(n-1) +2*a(n-2) -12*a(n-3) -9*a(n-4) for n>=5.
EXAMPLE
The first 6 nu polynomials are nu(0)=1, nu(1)=2, nu(2)=7, nu(3)=20+6q, nu(4)=61+33q+21q^2, nu(5)=182+144q+120q^2+78q^3+18q^4, so the coefficients of q^1 are 0,0,0,6,33,144.
Join[{0}, LinearRecurrence[{4, 2, -12, -9}, {0, 0, 6, 33}, 50]] (* G. C. Greubel, May 26 2018 *)
PROG
(PARI) x='x+O('x^30); concat([0, 0, 0], Vec((6*x^3 +9*x^4)/(1-2*x-3*x^2)^2)) \\ G. C. Greubel, May 26 2018
(Magma) I:=[0, 0, 6, 33]; [0] cat [n le 4 select I[n] else 4*Self(n-1) + 2*Self(n-2) -12*Self(n-3) -9*Self(n-4): n in [1..30]]; // G. C. Greubel, May 26 2018
CROSSREFS
Coefficients of q^0, q^2 and q^3 are in A014983, A074088 and A074089. Related sequences with other values of b and lambda are in A074082-A074086.