login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A078787
a(n) = 101*n + 1.
1
1, 102, 203, 304, 405, 506, 607, 708, 809, 910, 1011, 1112, 1213, 1314, 1415, 1516, 1617, 1718, 1819, 1920, 2021, 2122, 2223, 2324, 2425, 2526, 2627, 2728, 2829, 2930, 3031, 3132, 3233, 3334, 3435, 3536, 3637, 3738, 3839, 3940, 4041, 4142, 4243, 4344
OFFSET
0,2
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
Sequence in context: A044334 A044715 A197816 * A160850 A202052 A284450
KEYWORD
nonn
AUTHOR
Vincenzo Origlio (vincenzo.origlio(AT)itc.cnr.it), Jan 10 2003
STATUS
approved