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.

A213776 Antidiagonal sums of the convolution array A213774.

Original entry on oeis.org

1, 8, 30, 81, 184, 376, 717, 1304, 2294, 3941, 6656, 11104, 18361, 30168, 49342, 80441, 130840, 212472, 344645, 558600, 904886, 1465293, 2372160, 3839616, 6214129, 10056296, 16273182, 26332449, 42608824, 68944696, 111557181
Offset: 1

Views

Author

Clark Kimberling, Jun 21 2012

Keywords

Crossrefs

Programs

Formula

a(n) = 4*a(n-1) - 5*a(n-2) + a(n-3) + 2*a(n-4) - a(n-5).
G.f.: f(x)/g(x), where f(x) = x*(1 + 4*x + 3*x^2) and g(x) = (1 - x - x^2)*(1 - x)^3.
a(n) = 6*Fibonacci(n+6) - Lucas(n+5) - 2*n*(2*n+9) - 37. - Ehren Metcalfe, Jul 10 2019