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.

A213764 Antidiagonal sums of the convolution array A213762.

Original entry on oeis.org

1, 8, 31, 90, 225, 516, 1123, 2366, 4885, 9960, 20151, 40578, 81481, 163340, 327115, 654726, 1310013, 2620656, 5242015, 10484810, 20970481, 41941908, 83884851, 167770830, 335542885, 671087096, 1342175623, 2684352786
Offset: 1

Views

Author

Clark Kimberling, Jun 20 2012

Keywords

Crossrefs

Programs

  • Mathematica
    (See A213762.)
    LinearRecurrence[{5,-9,7,-2},{1,8,31,90},30] (* Harvey P. Dale, Jan 27 2016 *)

Formula

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