OFFSET
1,2
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..750
Index entries for linear recurrences with constant coefficients, signature (41, -440, 400).
FORMULA
a(1)=1, a(2)=41, a(3)=1241, a(n)=41*a(n-1)-440*a(n-2)+400*a(n-3) From Harvey P. Dale, Jun 04 2012
G.f.: -x / ( (x-1)*(-1+20*x)^2 ). - R. J. Mathar, Nov 07 2015
MATHEMATICA
RecurrenceTable[{a[1]==1, a[n]==n*20^(n-1)+a[n-1]}, a, {n, 20}] (* or *) LinearRecurrence[{41, -440, 400}, {1, 41, 1241}, 20] (* Harvey P. Dale, Jun 04 2012 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved