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.

A011921 [ n(n-1)(n-2)(n-3)/11 ].

Original entry on oeis.org

0, 0, 0, 0, 2, 10, 32, 76, 152, 274, 458, 720, 1080, 1560, 2184, 2978, 3970, 5192, 6676, 8456, 10570, 13058, 15960, 19320, 23184, 27600, 32618, 38290, 44672, 51820, 59792, 68650, 78458, 89280, 101184
Offset: 0

Views

Author

Keywords

Programs

  • Mathematica
    Table[Floor[(n(n-1)(n-2)(n-3))/11],{n,0,40}] (* or *) LinearRecurrence[ {4,-6,4,-1,0,0,0,0,0,0,1,-4,6,-4,1},{0,0,0,0,2,10,32,76,152,274,458,720,1080,1560,2184},40] (* Harvey P. Dale, Oct 17 2012 *)
  • PARI
    a(n)=n*(n-1)*(n-2)*(n-3)\11 \\ Charles R Greathouse IV, Oct 18 2022

Formula

a(n) = +4*a(n-1) -6*a(n-2) +4*a(n-3) -a(n-4) +a(n-11) -4*a(n-12) +6*a(n-13) -4*a(n-14) +a(n-15). G.f.: 2*x^4*(1+x+2*x^2+x^4+2*x^5+x^6+2*x^8+x^9+x^10) / ( (1-x)^5*(1+x+x^2+x^3+x^4+x^5+x^6+x^7+x^8+x^9+x^10) ). - R. J. Mathar, Apr 15 2010