OFFSET
0,2
COMMENTS
Original definition: a(n) = k where R(k+3) = 3. [Here R = reverse = A004086, not R = repunit = A002275 as in some other places.]
The restriction to positive indices yields A083813. - M. F. Hasler, Jul 29 2016
LINKS
FORMULA
R(a(n)) = A086579(n).
a(n) = 11*a(n-1) - 10*a(n-2) with a(0)=0 and a(1)=27. - Harvey P. Dale, Nov 28 2015
G.f.: 27*x/((1 - x)*(1 - 10*x)). - Ilya Gutkovskiy, Jul 29 2016
E.g.f.: 3*exp(x)*(exp(9*x) - 1). - Elmo R. Oliveira, Sep 12 2024
MATHEMATICA
Join[{0}, Table[FromDigits[Join[PadRight[{2}, n, 9], {7}]], {n, 20}]] (* or *) LinearRecurrence[{11, -10}, {0, 27}, 30] (* Harvey P. Dale, Nov 28 2015 *)
PROG
(PARI) a(n)=10^n*3-3 \\ M. F. Hasler, Jul 29 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Ray Chandler, Jul 22 2003
EXTENSIONS
Edited by M. F. Hasler, Jul 29 2016
STATUS
approved