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

A092690
Row sums of triangle A092689, which is related to the central trinomial coefficients (A002426).
2
1, 2, 7, 22, 71, 226, 717, 2262, 7107, 22246, 69413, 215986, 670441, 2076686, 6420403, 19816362, 61070499, 187953174, 577742469, 1773918642, 5441141589, 16674016758, 51052484343, 156188410098, 477487110429, 1458741494826
OFFSET
0,2
LINKS
FORMULA
E.g.f.: a(n) = n!* [x^n] exp(x)*((1+x)*BesselI(0, 2*x)+x*BesselI(1, 2*x)). - Peter Luschny, Aug 25 2012
MATHEMATICA
With[{nn = 50}, CoefficientList[Series[Exp[x]*((1 + x)*BesselI[0, 2*x] + x*BesselI[1, 2*x]), {x, 0, nn}], x] Range[0, nn]!] (* G. C. Greubel, Feb 27 2017 *)
PROG
(PARI) {T(n, k)=if(n<0 || k>n, 0, if(n==0 && k==0, 1, if(n==1 && k<=1, 1, if(k==n-1, T(n-1, 0), if(k==n, T(n, 0), 2*T(n-1, k)+T(n-1, k+1))))))} a(n)=sum(k=0, n, T(n, k))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 04 2004
STATUS
approved