OFFSET
0,3
FORMULA
a(n)/[n]_q! is the coefficient of x^n in the expansion of (exp_q(x))^2*(x + 2 x^2) when q->2 and where exp_q(x) is the q-exponential function and [n]_q! is the q-factorial of n.
MATHEMATICA
nn = 20; eq[z_] := Sum[z^n/FunctionExpand[QFactorial[n, q]], {n, 0, nn}];
Table[FunctionExpand[QFactorial[n, q]] /. q -> 2, {n, 0, nn}]
CoefficientList[Series[ eq[z]^2 (z + 2 z^2) /. q -> 2, {z, 0, nn}], z]
CROSSREFS
KEYWORD
nonn
AUTHOR
Geoffrey Critzer, Jul 15 2017
STATUS
approved