OFFSET
0,2
COMMENTS
n-th difference of a(n), a(n-1), ..., a(0) is (9, 10, 11, ...).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..3000
Index entries for linear recurrences with constant coefficients, signature (5,-8,4).
FORMULA
Main diagonal of the array defined by T(0,j) = j+1 for j>=0, T(i,0) = i+1 for i>=0, T(i,j) = T(i-1,j-1) + T(i-1,j) + 7. - Benoit Cloitre, Jun 17 2003
From Vincenzo Librandi, Sep 28 2011: (Start)
a(n) = 2^(n-1)*(n+16) - 7.
a(n) = 5*a(n-1) - 8*a(n-2) + 4*a(n-3), a(0)=1, a(1)=10, a(2)=29. (End)
G.f.: (1+5*x-13*x^2)/((1-x)*(1-2*x)^2). - Colin Barker, Feb 18 2016
E.g.f.: exp(x)*(exp(x)*(8 + x) - 7). - Elmo R. Oliveira, Oct 27 2025
MATHEMATICA
LinearRecurrence[{5, -8, 4}, {1, 10, 29}, 40] (* Harvey P. Dale, Aug 15 2020 *)
PROG
(Magma) [2^(n-1)*(n+16)-7: n in [0..30]]; // Vincenzo Librandi, Sep 28 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved
