OFFSET
1,1
LINKS
Tanya Khovanova, Recursive Sequences.
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
a(n) = 100*n - 13.
From Elmo R. Oliveira, Jun 09 2025: (Start)
G.f.: x*(13*x + 87)/(1 - x)^2.
E.g.f.: 13 + exp(x)*(100*x - 13).
a(n) = 2*a(n-1) - a(n-2) for n > 2. (End)
MATHEMATICA
100*Range[50]-13 (* or *) LinearRecurrence[{2, -1}, {87, 187}, 50] (* Harvey P. Dale, Jul 18 2016 *)
PROG
(PARI) a(n) = 100*n - 13; \\ Jinyuan Wang, Apr 05 2020
(PARI) my(x='x+O('x^48)); Vec(x*(87+13*x)/(-1+x)^2) \\ Elmo R. Oliveira, Jun 09 2025
(Magma) [100*n - 13 : n in [1..100]]; // Wesley Ivan Hurt, Feb 13 2026
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Benoit Cloitre, Mar 07 2002
EXTENSIONS
More terms from Elmo R. Oliveira, Jun 09 2025
STATUS
approved
