OFFSET
0,6
COMMENTS
Row sums of Riordan array (1,x(1-x^4))^(-1).
LINKS
F. Hering et al., The enumeration of stack polytopes and simplicial clusters, Discrete Math., 40 (1982), 203-217.
FORMULA
G.f. satisfies: A(x) = 1 + x*A(x)^2*A(-x)*A(I*x)*A(-I*x). - Paul D. Hanna, Jun 04 2012
G.f. satisfies: A(x) = 1 + x*A(x)*G(x^4) where G(x) = 1 + x*G(x)^5 is the g.f. of A002294. - Paul D. Hanna, Jun 04 2012
From Robert A. Russell, Mar 14 2024: (Start)
G.f.: G(z^4) + z*G(z^4)^2 + z^2*G(z^4)^3 + z^3*G(z^4)^4, where G(z) = 1 + z*G(z)^5 is the g.f. for A002294.
G.f.: E(1)(t*E(5)(t^4)) (fifth entry in Table 3), where E(d)(t) is defined in formula 3 of Hering link. (End)
MATHEMATICA
Table[k=Mod[n, 4]; (k+1)Binomial[(5n-k)/4, (n-k)/4]/(n+1), {n, 0, 40}] (* Robert A. Russell, Mar 14 2024 *)
PROG
(PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=1, n, A=1+x*A^2*subst(A, x, -x)*subst(A, x, I*x)*subst(A, x, -I*x)); polcoeff(A, n)} \\ Paul D. Hanna, Jun 04 2012
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+x*A*exp(sum(m=1, n\4, 4*polcoeff(log(A+x*O(x^n)), 4*m)*x^(4*m))+x*O(x^n))); polcoeff(A, n)} \\ Paul D. Hanna, Jun 04 2012
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Paul Barry, May 07 2006
STATUS
approved