OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Tanya Khovanova, Recursive Sequences.
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
From Elmo R. Oliveira, Jun 09 2025: (Start)
G.f.: 4*(11 + 14*x)/(1 - x)^2.
E.g.f.: 4*exp(x)*(11 + 25*x).
a(n) = 2*a(n-1) - a(n-2). (End)
MATHEMATICA
Array[100 # + 44 &, 40, 0] (* Michael De Vlieger, Aug 15 2017 *)
LinearRecurrence[{2, -1}, {44, 144}, 50] (* Vincenzo Librandi, Aug 16 2017 *)
PROG
(PARI) a(n) = 100*n + 44 \\ Altug Alkan, Aug 16 2017
(Magma) [100*n+44: n in [0..50]]; // Vincenzo Librandi, Aug 16 2017
CROSSREFS
KEYWORD
easy,nonn,less
AUTHOR
Giovanni Teofilatto, Feb 22 2005
STATUS
approved
