A092420 a(n+2) = 9*a(n+1) - a(n) + 1, with a(1)=1, a(2)=10.
1, 10, 90, 801, 7120, 63280, 562401, 4998330, 44422570, 394804801, 3508820640, 31184580960, 277152408001, 2463187091050, 21891531411450, 194560595612001, 1729153829096560, 15367823866257040, 136581260967216801
Offset: 1
Links
Crossrefs
Programs
-
Mathematica
a[1] = 1; a[2] = 10; a[n_] := a[n] = 9a[n - 1] - a[n - 2] + 1; Table[ a[n], {n, 20}] (* Robert G. Wilson v, Apr 05 2004 *) LinearRecurrence[{10,-10,1},{1,10,90},20] (* Harvey P. Dale, May 21 2023 *)
Formula
Extensions
More terms from Robert G. Wilson v, Apr 05 2004
Chebyshev comments from Wolfdieter Lang, Aug 31 2004
Comments