OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..5000
Tanya Khovanova, Recursive Sequences
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
a(n) = 2*a(n-1) - a(n-2); a(0)=1, a(1)=102. - Harvey P. Dale, Feb 02 2015
MATHEMATICA
101*Range[0, 50]+1 (* or *) LinearRecurrence[{2, -1}, {1, 102}, 50] (* Harvey P. Dale, Feb 02 2015 *)
PROG
(Magma) [101*n + 1: n in [0..50]]; // Vincenzo Librandi, Jun 05 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Vincenzo Origlio (vincenzo.origlio(AT)itc.cnr.it), Jan 10 2003
STATUS
approved