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

A108207
a(n)= 5*(n-1)*a(n-1) -(n-1)*a(n-2), with a(0)=0, a(1)=1.
0
0, 1, 5, 48, 705, 13908, 344175, 10241802, 356053845, 14160219384, 634005387675, 31558667189910, 1728752636180625, 103346454164558580, 6695045736425959575, 467206351191513350130, 34940050653317111866125
OFFSET
0,3
COMMENTS
This is also the (2,2) element of the product matrix after multiplying the unit matrix from the
left by the matrices (0,-1;j-1,5j-5) in the order j=2 to n.
MATHEMATICA
M[n_] := {{0, -1}, {(n - 1), 5*(n - 1)}} v[1] = {0, 1} v[n_] := v[n] = M[n].v[n - 1] a = Table[Abs[v[n][[1]]], {n, 1, 25}]
RecurrenceTable[{a[0]==0, a[1]==1, a[n]==5(n-1)a[n-1]-(n-1)a[n-2]}, a[n], {n, 20}] (* Harvey P. Dale, Aug 19 2011 *)
CROSSREFS
Cf. A000166.
Sequence in context: A023999 A126224 A360235 * A127091 A370758 A352254
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, Jun 15 2005
EXTENSIONS
Definition replaced by recurrence by the Associate Editors of the OEIS, Sep 28 2009
STATUS
approved