A161714 a(n) = 28*n + 1.
1, 29, 57, 85, 113, 141, 169, 197, 225, 253, 281, 309, 337, 365, 393, 421, 449, 477, 505, 533, 561, 589, 617, 645, 673, 701, 729, 757, 785, 813, 841, 869, 897, 925, 953, 981, 1009, 1037, 1065, 1093, 1121, 1149, 1177, 1205, 1233, 1261, 1289, 1317, 1345, 1373
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..5000
- Index entries for linear recurrences with constant coefficients, signature (2,-1).
Crossrefs
Programs
-
GAP
List([0..60], n-> 1+28*n); # G. C. Greubel, Sep 18 2019
-
Magma
[28*n + 1: n in [0..60]]; // Vincenzo Librandi, May 04 2011
-
Maple
seq(1+28*n, n=0..60); # G. C. Greubel, Sep 18 2019
-
Mathematica
Range[1, 1700, 28] (* Vladimir Joseph Stephan Orlovsky, Jun 15 2011 *) CoefficientList[Series[(1+27x)/(1-x)^2, {x,0,60}], x] (* Michael De Vlieger, Apr 05 2017 *)
-
PARI
vector(60, n, 28*n-27) \\ G. C. Greubel, Sep 18 2019
-
Sage
[1+28*n for n in (0..60)] # G. C. Greubel, Sep 18 2019
Formula
G.f.: (1 + 27*x)/(1-x)^2. - Indranil Ghosh, Apr 05 2017
E.g.f.: (1 + 28*x)*exp(x). - G. C. Greubel, Sep 18 2019