[go: up one dir, main page]

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”).

A014937
a(1)=1, a(n)=n*20^(n-1)+a(n-1).
12
1, 41, 1241, 33241, 833241, 20033241, 468033241, 10708033241, 241108033241, 5361108033241, 118001108033241, 2575601108033241, 55823601108033241, 1202703601108033241, 25778703601108033241, 550066703601108033241
OFFSET
1,2
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
Sequence in context: A196744 A196902 A297349 * A275225 A275145 A118451
KEYWORD
nonn,easy
STATUS
approved