login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A213764
Antidiagonal sums of the convolution array A213762.
3
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,2
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.
MATHEMATICA
(See A213762.)
LinearRecurrence[{5, -9, 7, -2}, {1, 8, 31, 90}, 30] (* Harvey P. Dale, Jan 27 2016 *)
CROSSREFS
Sequence in context: A006322 A319906 A212064 * A335606 A320416 A289613
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 20 2012
STATUS
approved