A017497 a(n) = 11*n + 9.
9, 20, 31, 42, 53, 64, 75, 86, 97, 108, 119, 130, 141, 152, 163, 174, 185, 196, 207, 218, 229, 240, 251, 262, 273, 284, 295, 306, 317, 328, 339, 350, 361, 372, 383, 394, 405, 416, 427, 438, 449, 460, 471, 482, 493, 504, 515, 526, 537, 548, 559, 570, 581, 592
Offset: 0
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).
Crossrefs
Programs
-
GAP
List([0..60], n-> 11*n+9); # G. C. Greubel, Oct 28 2019
-
Magma
[11*n+9: n in [0..60]]; // Vincenzo Librandi, Sep 18 2011
-
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 *)
-
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