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”).

A191462
E.g.f. (1+x)^(1+x^2+x^4)
0
1, 1, 0, 6, 12, 100, 780, -1092, 43344, 48816, 1264320, 24662880, -162851040, 4327633440, -17686783296, 275230488960, 3743721112320, -70886371933440, 2127136959383040, -25991855154846720, 402985066993459200
OFFSET
0,4
FORMULA
a(n)=sum(k=1..n, sum(i=0..(n-k)/2, ((sum(j=0..k, binomial(j,i-j)*binomial(k,j)))*stirling1(n-2*i,k))/(n-2*i)!)), n>0, a(0)=1.
MATHEMATICA
With[{nn=20}, CoefficientList[Series[(1+x)^(1+x^2+x^4), {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Aug 24 2012 *)
PROG
(Maxima)
a(n):=sum(sum(((sum(binomial(j, i-j)*binomial(k, j), j, 0, k))*stirling1(n-2*i, k))/(n-2*i)!, i, 0, (n-k)/2), k, 1, n);
CROSSREFS
Sequence in context: A002898 A003613 A099767 * A340060 A080450 A144760
KEYWORD
sign
AUTHOR
Vladimir Kruchinin, Jun 02 2011
STATUS
approved