login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A118968 a(4n+k) = (k+1)*binomial(5n+k,n)/(4n+k+1), k=0..3. 5
1, 1, 1, 1, 1, 2, 3, 4, 5, 11, 18, 26, 35, 80, 136, 204, 285, 665, 1155, 1771, 2530, 5980, 10530, 16380, 23751, 56637, 100688, 158224, 231880, 556512, 996336, 1577532, 2330445, 5620485, 10116873, 16112057, 23950355, 57985070, 104819165 (list; graph; refs; listen; history; text; internal format)
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
a(4n)=A002294(n), a(4n+1)=A118969(n), a(4n+2)=A118970(n), a(4n+3)=A118971(n).
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
Sequence in context: A052418 A051800 A121432 * A073528 A116067 A063685
KEYWORD
easy,nonn,changed
AUTHOR
Paul Barry, May 07 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 29 02:23 EDT 2024. Contains 371264 sequences. (Running on oeis4.)