OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (11,-35,25).
FORMULA
a(n) = 11*a(n-1) - 35*a(n-2) + 25*a(n-3); a(0)=1, a(1)=6, a(2)=51. [Harvey P. Dale, Sep 15 2011]
G.f.: -(20*x^2-5*x+1)/((x-1)*(5*x-1)^2). [Colin Barker, Oct 14 2012]
MATHEMATICA
Table[n 5^n+1, {n, 0, 20}] (* or *) LinearRecurrence[{11, -35, 25}, {1, 6, 51}, 20] (* Harvey P. Dale, Sep 15 2011 *)
PROG
(Magma) [ n*5^n+1: n in [0..20]]; // Vincenzo Librandi, Sep 16 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Dec 30 1999
STATUS
approved