[go: up one dir, main page]

login
A161714
a(n) = 28*n + 1.
10
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,2
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
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 *)
PROG
(Magma) [28*n + 1: n in [0..60]]; // Vincenzo Librandi, May 04 2011
(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
(GAP) List([0..60], n-> 1+28*n); # G. C. Greubel, Sep 18 2019
KEYWORD
nonn,easy
AUTHOR
Reinhard Zumkeller, Jun 17 2009
STATUS
approved