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.

A011930 a(n) = floor(n(n-1)(n-2)(n-3)/20).

This page as a plain text file.
%I A011930 #28 Jun 13 2023 09:04:50
%S A011930 0,0,0,0,1,6,18,42,84,151,252,396,594,858,1201,1638,2184,2856,3672,
%T A011930 4651,5814,7182,8778,10626,12751,15180,17940,21060,24570,28501,32886,
%U A011930 37758,43152,49104,55651,62832,70686,79254,88578,98701
%N A011930 a(n) = floor(n(n-1)(n-2)(n-3)/20).
%H A011930 Vincenzo Librandi, <a href="/A011930/b011930.txt">Table of n, a(n) for n = 0..1000</a>
%H A011930 <a href="/index/Rec#order_09">Index entries for linear recurrences with constant coefficients</a>, signature (4, -6, 4, -1, 1, -4, 6, -4, 1).
%F A011930 From _R. J. Mathar_, Apr 15 2010: (Start)
%F A011930 a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) + a(n-5) - 4*a(n-6) + 6*a(n-7) - 4*a(n-8) + a(n-9).
%F A011930 G.f.: x^4*(x^4+2*x^3+2*x+1) / ((1-x)^5*(x^4+x^3+x^2+x+1)). (End)
%t A011930 CoefficientList[Series[x^4*(x^4+2*x^3+2*x+1)/((1-x)^5*(x^4+x^3+x^2+x+1)),{x,0,50}],x] (* _Vincenzo Librandi_, Jun 19 2012 *)
%t A011930 Table[Floor[n(n-1)(n-2)(n-3)/20],{n,0,40}] (* or *) LinearRecurrence[ {4,-6,4,-1,1,-4,6,-4,1},{0,0,0,0,1,6,18,42,84},40] (* _Harvey P. Dale_, Apr 08 2013 *)
%o A011930 (Magma) [Floor(n*(n-1)*(n-2)*(n-3)/20  ): n in [0..40]]; // _Vincenzo Librandi_, Jun 19 2012
%K A011930 nonn,easy
%O A011930 0,6
%A A011930 _N. J. A. Sloane_