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.

A268599 Expansion of 2*x^6*(4-10*x+7*x^2)/(1-2*x)^5.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 8, 60, 294, 1180, 4200, 13776, 42560, 125568, 357120, 985600, 2652672, 6988800, 18077696, 46018560, 115507200, 286326784, 701890560, 1703411712, 4096655360, 9771417600, 23132110848, 54384394240, 127049662464, 295069286400, 681574400000
Offset: 0

Views

Author

Ran Pan, Feb 08 2016

Keywords

Comments

a(n) is the number of North-East lattice paths from (0,0) to (n,n) that have exactly two east steps below y = x - 1 and exactly two easts step above y = x + 1. Details can be found in Section 4.1 in Pan and Remmel's link.

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[2 x^6 (4 - 10 x + 7 x^2)/(1 - 2 x)^5, {x, 0, 30}], x] (* Michael De Vlieger, Feb 08 2016 *)
  • PARI
    concat(vector(6), Vec(2*x^6*(4-10*x+7*x^2)/(1-2*x)^5 + O(x^100))) \\ Colin Barker, Feb 08 2016

Formula

G.f.: 2*x^6*(4-10*x+7*x^2)/(1-2*x)^5.
a(n) = 2^(n-10)*(n-5)*(n-4)*(n^2+3*n+10) for n>3. - Colin Barker, Feb 08 2016