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.

A037956 a(n) = binomial(n, floor((n-4)/2)).

This page as a plain text file.
%I A037956 #19 Jun 21 2022 05:07:49
%S A037956 0,0,0,0,1,1,6,7,28,36,120,165,495,715,2002,3003,8008,12376,31824,
%T A037956 50388,125970,203490,497420,817190,1961256,3268760,7726160,13037895,
%U A037956 30421755,51895935,119759850,206253075
%N A037956 a(n) = binomial(n, floor((n-4)/2)).
%H A037956 G. C. Greubel, <a href="/A037956/b037956.txt">Table of n, a(n) for n = 0..1000</a>
%F A037956 E.g.f.: Bessel_I(4,2x) + Bessel_I(5,2x). - _Paul Barry_, Feb 28 2006
%F A037956 (n+5)*(n-4)*a(n) = -(n^2-3*n-20)*a(n-1) - (n^2-13*n-88)*a(n-2) + 2*(2*n+3)*(n-2)*a(n-3) +20*(n-2)*(n-3)*a(n-4). - _R. J. Mathar_, Nov 24 2012
%F A037956 From _Robert Israel_, Oct 28 2019: (Start)
%F A037956 G.f.: 16*x^4*(1+2*x+sqrt(1-4*x^2))/(sqrt(1-4*x^2)*(1+sqrt(1-4*x^2))^5).
%F A037956 Mathar's recurrence verified using the D.E. (4*x^4-x^2)*y'' + (16*x^3+2*x^2-2*x)*y' + (8*x^2+2*x+20)*y = 0 satisfied by the G.f. (End)
%p A037956 seq(binomial(n,floor((n-4)/2)),n=0..50); # _Robert Israel_, Oct 28 2019
%t A037956 Table[Binomial[n,Floor[(n-4)/2]],{n,0,40}] (* _Harvey P. Dale_, Mar 02 2015 *)
%o A037956 (Magma) [Binomial(n, Floor((n-4)/2)): n in [0..40]]; // _G. C. Greubel_, Jun 20 2022
%o A037956 (SageMath) [binomial(n, (n-4)//2) for n in (0..40)] # _G. C. Greubel_, Jun 20 2022
%Y A037956 Cf. A035951, A035952, A035953, A035954, A035955, A035957.
%Y A037956 Cf. A089940, A101491.
%K A037956 nonn
%O A037956 0,7
%A A037956 _N. J. A. Sloane_