OFFSET
0,2
LINKS
A. Randrianarivony and J. Zeng, Une famille des polynomes qui interpole plusieurs suites..., Adv. Appl. Math. 17 (1996), 1-26.
FORMULA
Recurrence: S(0, x)=1, S(n, x)=(2x+2)(2x+4)S(n-1, x+2)-(2x+1)^2S(n-1, x).
G.f.: Sum[n>=0, S(n, x)t^n] = 1/(1+t-4*2(x+1)t/(1-4*2(x+2)t/(1+t-4*4(x+3)t/(1-4+4(x+4)t/...)))).
EXAMPLE
S(0,x) = 1,
S(1,x) = 8*x + 7,
S(2,x) = 128*x^2 + 304*x + 177,
S(3,x) = 3072*x^3 + 13952*x^2 + 21080*x + 10199.
PROG
(PARI) S(n, x)=if(n<1, 1, (2*x+2)*(2*x+4)*S(n-1, x+2)-(2*x+1)^2*S(n-1, x))
CROSSREFS
KEYWORD
tabl,nonn
AUTHOR
Ralf Stephan, Sep 07 2004
STATUS
approved