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.

A244881 Expansion of (1 + 26*x + 109*x^2 + 109*x^3 + 26*x^4 + x^5) / (1 - x)^8.

Original entry on oeis.org

1, 34, 353, 2037, 8272, 26585, 72302, 173502, 377739, 760804, 1437799, 2576795, 4415346, 7280131, 11609996, 17982668, 27145413, 40049910, 57891613, 82153873, 114657092, 157613181, 213685594, 286055210, 378492335, 495435096, 642074499, 824446423, 1049530822
Offset: 0

Views

Author

N. J. A. Sloane, Jul 08 2014

Keywords

Programs

  • PARI
    Vec((1 + x)*(1 + 25*x + 84*x^2 + 25*x^3 + x^4) / (1 - x)^8 + O(x^30)) \\ Colin Barker, Jan 12 2017

Formula

From Colin Barker, Jan 12 2017: (Start)
a(n) = (2520 + 11526*n + 22617*n^2 + 24724*n^3 + 16275*n^4 + 6454*n^5 + 1428*n^6 + 136*n^7) / 2520.
a(n) = 8*a(n-1) - 28*a(n-2) + 56*a(n-3) - 70*a(n-4) + 56*a(n-5) - 28*a(n-6) + 8*a(n-7) - a(n-8) for n>7.
(End)