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

A014943
a(1)=1, a(n)=n*25^(n-1)+a(n-1).
2
1, 51, 1926, 64426, 2017551, 60611301, 1769595676, 50597720676, 1423888736301, 39570861392551, 1088612609439426, 29698842101626926, 804559224181705051, 21666184895568423801, 580459729664855533176
OFFSET
1,2
FORMULA
a(1)=1, a(2)=51, a(3)=1926, a(n)=51*a(n-1)-675*a(n-2)+625*a(n-3). - Harvey P. Dale, Dec 16 2012
MATHEMATICA
RecurrenceTable[{a[1]==1, a[n]==n*25^(n-1)+a[n-1]}, a, {n, 20}] (* or *)
LinearRecurrence[{51, -675, 625}, {1, 51, 1926}, 20] (* Harvey P. Dale, Dec 16 2012 *)
CROSSREFS
Sequence in context: A017714 A202044 A238319 * A278623 A288604 A278305
KEYWORD
nonn,easy
STATUS
approved