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.

A213834 Antidiagonal sums of the convolution array A213833.

Original entry on oeis.org

1, 10, 46, 140, 335, 686, 1260, 2136, 3405, 5170, 7546, 10660, 14651, 19670, 25880, 33456, 42585, 53466, 66310, 81340, 98791, 118910, 141956, 168200, 197925, 231426, 269010, 310996, 357715, 409510, 466736
Offset: 1

Views

Author

Clark Kimberling, Jul 04 2012

Keywords

Crossrefs

Cf. A213833.

Programs

Formula

a(n) = n*(n+1)*(3*n^2 - 2*n + 2)/6.
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5).
G.f.: f(x)/g(x), where f(x) = x*(1 + 2*x)(1 + 3*x) and g(x) = (1-x)^5.