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

A037519
Decimal expansion of a(n) is given by the first n terms of the periodic sequence with initial period 2,0,1.
1
2, 20, 201, 2012, 20120, 201201, 2012012, 20120120, 201201201, 2012012012, 20120120120, 201201201201, 2012012012012, 20120120120120, 201201201201201, 2012012012012012
OFFSET
1,1
FORMULA
G.f.: (x*(2+x^2)) / ((x-1)*(10*x-1)*(1+x+x^2)). - R. J. Mathar, Nov 21 2011
MATHEMATICA
LinearRecurrence[{10, 0, 1, -10}, {2, 20, 201, 2012}, 40] (* Vincenzo Librandi, Nov 23 2011 *)
Table[FromDigits[PadRight[{}, n, {2, 0, 1}]], {n, 20}] (* Harvey P. Dale, Sep 18 2018 *)
PROG
(Magma) I:=[2, 20, 201, 2012]; [n le 4 select I[n] else 10*Self(n-1)+Self(n-3)-10*Self(n-4): n in [1..20]]; // Vincenzo Librandi, Nov 23 2011
CROSSREFS
Sequence in context: A136902 A136884 A093136 * A037722 A109107 A037729
KEYWORD
nonn,base,easy
STATUS
approved