OFFSET
0,1
COMMENTS
LINKS
Winston de Greef, Table of n, a(n) for n = 0..10000
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
a(n) = 36 + a(n-1), for n >= 1, with a(0) = 35.
G.f.: (35 + x)/(1 - x)^2.
MATHEMATICA
Table[36*n + 35, {n, 0, 50}] (* Amiram Eldar, Feb 10 2022 *)
PROG
(PARI) a(n) = 36*n + 35 \\ Winston de Greef, Jan 29 2024
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Feb 10 2022
STATUS
approved