login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A011925 a(n) = floor(n*(n-1)*(n-2)*(n-3)/15). 1
0, 0, 0, 0, 1, 8, 24, 56, 112, 201, 336, 528, 792, 1144, 1601, 2184, 2912, 3808, 4896, 6201, 7752, 9576, 11704, 14168, 17001, 20240, 23920, 28080, 32760, 38001, 43848, 50344, 57536, 65472, 74201, 83776 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
From R. J. Mathar, Apr 15 2010: (Start)
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).
G.f.: x^4*(x^4 + 4*x^3 - 2*x^2 + 4*x + 1) / ( (1-x)^5*(x^4 + x^3 + x^2 + x + 1) ). (End)
MAPLE
A011925:=n->floor(n*(n-1)*(n-2)*(n-3)/15); seq(A011925(n), n=0..50); # Wesley Ivan Hurt, Jan 31 2014
MATHEMATICA
CoefficientList[Series[x^4*(x^4+4*x^3-2*x^2+4*x+1)/((1-x)^5*(x^4+x^3+x^2+x+1)), {x, 0, 50}], x] (* Vincenzo Librandi, Jun 19 2012 *)
PROG
(Magma) [Floor(n*(n-1)*(n-2)*(n-3)/15): n in [0..45]]; // Vincenzo Librandi, Jun 19 2012
CROSSREFS
Sequence in context: A316541 A152134 A279018 * A256052 A159741 A302489
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 08:33 EDT 2024. Contains 371905 sequences. (Running on oeis4.)