OFFSET
1,3
FORMULA
G.f.: T(0)/x - 1/x, where T(k) = 1 - x^2*(k+1)/( x^2*(k+1) - (1-2*x*k)*(1-2*x-2*x*k)/T(k+1) ); (continued fraction). - Sergei N. Gladkovskii, Oct 19 2013
PROG
(PARI) lista(m) = {P = x; M = subst(P, x, 1); print1(polcoeff(M, 0, q), ", "); Q = 2*x; M = subst(Q, x, 1); print1(polcoeff(M, 0, q), ", "); for (n=3, m, newP = n*q*Q+ 2*q*(1-q)*deriv(Q, q)+2*x*(1-q)*deriv(Q, x)+n*x*P; M = subst(newP, x, 1); print1(polcoeff(M, 0, q), ", "); P = Q; Q = newP; ); } \\ Michel Marcus, Feb 12 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Sep 27 2012
EXTENSIONS
More terms from Michel Marcus, Feb 12 2013
STATUS
approved