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

A108209
a(n) = 5*(n-1)*a(n-1) -2*(n-1)*a(n-2) with a(0)=0, a(1)=2.
0
0, 2, 10, 92, 1320, 25664, 628400, 18544032, 640243520, 25313036288, 1127562249600, 55871851754240, 3048145476992000, 181547804177418240, 11721355489130393600, 815411545722159841280, 60804225264488076288000
OFFSET
0,2
COMMENTS
This is also the negative of the (1,2) element of the product matrix after multiplying the unit matrix from the
left by the matrices (0,-2;j-1,5j-5) in the order j=2 to n.
MATHEMATICA
M[n_] := {{0, -2}, {(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}]
nxt[{n_, a_, b_}]:={n+1, b, 5n*b-2n*a}; nxt[{n_, a_, b_}]:={n+1, b, 5n*b-2n*a} (* Harvey P. Dale, Sep 15 2024 *)
CROSSREFS
Cf. A000166.
Sequence in context: A108528 A181136 A182952 * A111773 A289020 A195415
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