OFFSET
0,2
COMMENTS
Original definition: a(n) = k where R(k+7) = 7.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..500
Index entries for linear recurrences with constant coefficients, signature (11,-10).
FORMULA
R(a(n)) = A086575(n).
From Chai Wah Wu, Jul 08 2016: (Start)
a(n) = 11*a(n-1) - 10*a(n-2) for n > 1.
G.f.: 63*x/((1 - x)*(1 - 10*x)). (End)
E.g.f.: 7*(exp(10*x) - exp(x)). - G. C. Greubel, Apr 14 2023
MATHEMATICA
LinearRecurrence[{11, -10}, {0, 63}, 31] (* G. C. Greubel, Apr 14 2023 *)
PROG
(Magma) [7*(10^n -1): n in [0..20]]; // G. C. Greubel, Apr 14 2023
(SageMath) [7*(10^n -1) for n in range(21)] # G. C. Greubel, Apr 14 2023
CROSSREFS
One of family of sequences of form a(n) = k, where R(k+m) = m, m=1 to 9; m=1: A002283, m=2: A086573, m=3: A086574, m=4: A086575, m=5: A086576, m=6: A086577, m=7: A086578, m=8: A086579, m=9: A086580.
KEYWORD
nonn
AUTHOR
Ray Chandler, Jul 22 2003
EXTENSIONS
Edited by Jinyuan Wang, Aug 04 2021
STATUS
approved