A350521 a(n) = 18*n + 4.
4, 22, 40, 58, 76, 94, 112, 130, 148, 166, 184, 202, 220, 238, 256, 274, 292, 310, 328, 346, 364, 382, 400, 418, 436, 454, 472, 490, 508, 526, 544, 562, 580, 598, 616, 634, 652, 670, 688, 706, 724, 742, 760, 778, 796, 814, 832, 850, 868, 886, 904, 922, 940, 958
Offset: 0
Links
- Index entries for linear recurrences with constant coefficients, signature (2,-1).
Programs
-
GAP
List([0..53], n-> 18*n+4)
-
Magma
[18*n+4: n in [0..53]];
-
Maple
seq(18*n+4, n=0..53);
-
Mathematica
Table[18n+4, {n, 0, 53}]
-
Maxima
makelist(18*n+4, n, 0, 53);
-
PARI
a(n)=18*n+4
-
Python
[18*n+4 for n in range(53)]
Comments