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.

A234253 a(n) = Sum_{i=1..n} C(7+i,8)^2.

Original entry on oeis.org

1, 82, 2107, 29332, 274357, 1930726, 10948735, 52357960, 217994860, 808970960, 2723733524, 8436372248, 24304813148, 65712993248, 167965846148, 408373664744, 949291256585, 2119095737210, 4559798912835, 9488531918460, 19148848609485, 37571357310510
Offset: 1

Views

Author

Yahia Kahloune, Dec 22 2013

Keywords

Crossrefs

Programs

  • Maple
    A234253:=n->add(binomial(7+i,8)^2, i=1..n); seq(A234253(n), n=1..30); # Wesley Ivan Hurt, Dec 23 2013
  • Mathematica
    Table[Sum[Binomial[7 + i, 8]^2, {i, n}], {n, 30}] (* Wesley Ivan Hurt, Dec 23 2013 *)
    CoefficientList[Series[(x^8 + 64 x^7 + 784 x^6 + 3136 x^5 + 4900 x^4 + 3136 x^3 + 784 x^2 + 64 x + 1)/(x - 1)^18, {x, 0, 40}], x] (* Vincenzo Librandi, May 06 2014 *)
  • PARI
    Vec(x*(x^8 +64*x^7 +784*x^6 +3136*x^5 +4900*x^4 +3136*x^3 +784*x^2 +64*x +1)/(x-1)^18 + O(x^100)) \\ Colin Barker, May 02 2014

Formula

G.f.: x*(x^8 +64*x^7 +784*x^6 +3136*x^5 +4900*x^4 +3136*x^3 +784*x^2 +64*x +1) / (x-1)^18. - Colin Barker, May 02 2014

Extensions

One term corrected and more terms from Colin Barker, May 02 2014