OFFSET
0,2
COMMENTS
The digit pattern of a(n) is: n times 1 and (n+1) times 0.
LINKS
Index entries for linear recurrences with constant coefficients, signature (110, -1000).
FORMULA
From R. J. Mathar, Aug 12 2009: (Start)
a(n) = 110*a(n-1) - 1000*a(n-2).
a(n) = 100*A109241(n-1).
G.f.: 100*x/((100*x-1) * (10*x-1)). (End)
From Wesley Ivan Hurt, Jun 22 2013: (Start)
a(n) = (10/9) * (10^n) * (10^n - 1).
a(n) = A002275(n) * 10^(n+1). (End)
E.g.f.: (10/9)*(exp(100*x) - exp(10*x)). - G. C. Greubel, Aug 01 2017
MATHEMATICA
Table[FromDigits[Join[PadRight[{}, n-1, 1], PadRight[{}, n, 0]]], {n, 20}] (* Harvey P. Dale, Aug 29 2015 *)
PROG
(PARI) x='x+O('x^50); Vec(100*x/((100*x-1)*(10*x-1))) \\ G. C. Greubel, Aug 01 2017
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jaroslav Krizek, Aug 02 2009
EXTENSIONS
Edited by R. J. Mathar, Aug 12 2009
STATUS
approved