cp's OEIS Frontend

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.

A092690 Row sums of triangle A092689, which is related to the central trinomial coefficients (A002426).

This page as a plain text file.
%I A092690 #13 Jun 13 2017 21:56:49
%S A092690 1,2,7,22,71,226,717,2262,7107,22246,69413,215986,670441,2076686,
%T A092690 6420403,19816362,61070499,187953174,577742469,1773918642,5441141589,
%U A092690 16674016758,51052484343,156188410098,477487110429,1458741494826
%N A092690 Row sums of triangle A092689, which is related to the central trinomial coefficients (A002426).
%H A092690 G. C. Greubel, <a href="/A092690/b092690.txt">Table of n, a(n) for n = 0..1000</a>
%F A092690 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
%t A092690 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 *)
%o A092690 (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))
%Y A092690 Cf. A002426, A092683, A092686, A092689.
%K A092690 nonn
%O A092690 0,2
%A A092690 _Paul D. Hanna_, Mar 04 2004