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.

A213767 Antidiagonal sums of the convolution array A213765.

Original entry on oeis.org

1, 5, 17, 47, 114, 254, 533, 1071, 2083, 3951, 7348, 13452, 24313, 43481, 77077, 135615, 237094, 412234, 713325, 1229155, 2110151, 3610655, 6159912, 10481112, 17790769, 30132269, 50933273, 85936271, 144750618, 243438806
Offset: 1

Views

Author

Clark Kimberling, Jun 21 2012

Keywords

Crossrefs

Programs

Formula

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