login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A190878
E.g.f. exp(x/(1-x-x^4)).
1
1, 1, 3, 13, 73, 621, 6211, 70393, 884913, 12534553, 197772931, 3429365061, 64519103353, 1309062244933, 28518573321603, 664268130978481, 16466530506866401, 432644339697987633, 12007970879629419523, 351062850914762411773, 10783262700644774606121
OFFSET
0,3
LINKS
FORMULA
a(n) = n!*sum(m=0..n, sum(j=0..(n-m)/3, binomial(n-3*j-1,m-1)*binomial(n-m-3*j,j))/m!).
PROG
(Maxima)
a(n):=n!*sum(sum(binomial(n-3*j-1, m-1)*binomial(n-m-3*j, j), j, 0, (n-m)/3)/m!, m, 0, n);
(PARI) Vec(serlaplace(exp(x/(1-x-x^4+O(x^66))))) /* Joerg Arndt, May 24 2011 */
CROSSREFS
Sequence in context: A367747 A162161 A119013 * A156154 A334785 A349533
KEYWORD
nonn
AUTHOR
Vladimir Kruchinin, May 23 2011
STATUS
approved