OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..10000
Tanya Khovanova, Recursive Sequences
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
MAPLE
seq(11*n+9, n=0..60); # G. C. Greubel, Oct 28 2019
MATHEMATICA
Range[9, 1000, 11] (* Vladimir Joseph Stephan Orlovsky, May 29 2011 *)
(11*Range[60] - 2) (* G. C. Greubel, Oct 28 2019 *)
PROG
(Magma) [11*n+9: n in [0..60]]; // Vincenzo Librandi, Sep 18 2011
(PARI) a(n)=11*n+9 \\ Charles R Greathouse IV, Jul 10 2016
(Sage) [11*n+9 for n in (0..60)] # G. C. Greubel, Oct 28 2019
(GAP) List([0..60], n-> 11*n+9); # G. C. Greubel, Oct 28 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved