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.

A317983 Expansion of 420*x*(1 + x)*(1 + 10*x + x^2) / (1 - x)^6.

Original entry on oeis.org

420, 7140, 41160, 148680, 411180, 955500, 1963920, 3684240, 6439860, 10639860, 16789080, 25498200, 37493820, 53628540, 74891040, 102416160, 137494980, 181584900, 236319720, 303519720, 385201740, 483589260, 601122480, 740468400, 904530900, 1096460820
Offset: 1

Views

Author

Colin Barker, Aug 13 2018

Keywords

Comments

Seems to be the negative of the third column of A316387.

Crossrefs

Programs

  • PARI
    Vec(420*x*(1 + x)*(1 + 10*x + x^2) / (1 - x)^6 + O(x^40))
    
  • PARI
    a(n) = 84*n^5 + 210*n^4 + 140*n^3 - 14*n

Formula

G.f.: 420*x*(1 + x)*(1 + 10*x + x^2) / (1 - x)^6.
a(n) = 420 * A000538(n).
a(n) = 84*n^5 + 210*n^4 + 140*n^3 - 14*n.
a(n) = 6*a(n-1) - 15*a(n-2) + 20*a(n-3) - 15*a(n-4) + 6*a(n-5) - a(n-6) for n>6.