This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A191237 #16 Jun 02 2025 04:07:42 %S A191237 1,1,1,7,25,181,1201,5251,57457,469225,4340161,50118751,412902601, %T A191237 5544552157,69259632625,816044592091,12518563864801,152563427413201, %U A191237 2401979910598657,39326158638385975,575414895837696121 %N A191237 E.g.f. exp(x+x^3+x^5). %H A191237 Vincenzo Librandi, <a href="/A191237/b191237.txt">Table of n, a(n) for n = 0..125</a> %F A191237 a(n)=n!*sum(k=1..n, ((-1)^(n-k)+1)*sum(binomial(j,(n-k)/2-j)*binomial(k,j),j,0,k)/(2*k!)), n>0, a(0)=1. %t A191237 a[n_] := n!*Sum[((-1)^(n - k) + 1)* Sum[ Binomial[j, (n - k)/2 - j]*Binomial[k, j], {j, 0, k}]/(2*k!), {k, 1, n}]; a[0] = 1; Table[a[n], {n, 0, 20}] (* _Jean-François Alcover_, Feb 21 2013 *) %t A191237 With[{nn=20},CoefficientList[Series[Exp[x+x^3+x^5],{x,0,nn}],x] Range[0,nn]!] (* _Harvey P. Dale_, Sep 21 2016 *) %o A191237 (Maxima) %o A191237 a(n):=n!*sum(((-1)^(n-k)+1)*sum(binomial(j,(n-k)/2-j)*binomial(k,j),j,0,k)/(2*k!),k,1,n); %o A191237 (PARI) x='x+O('x^66); /* that many terms */ %o A191237 Vec(serlaplace(exp(x+x^3+x^5))) /* show terms */ /* Joerg Arndt, May 28 2011 */ %K A191237 nonn %O A191237 0,4 %A A191237 _Vladimir Kruchinin_, May 27 2011