OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1).
FORMULA
G.f.: (1000 + 5261*x + 1724*x^2 + x^3)/(1-x)^4. - Vincenzo Librandi, May 26 2016
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4), for n>3. - Vincenzo Librandi, May 26 2016
E.g.f.: (1000 + 8261*x + 7623*x^2 + 1331*x^3)*exp(x). - G. C. Greubel, Oct 29 2019
MAPLE
seq((11*n+10)^3, n=0..40); # G. C. Greubel, Oct 29 2019
MATHEMATICA
Table[(11 n + 10)^3, {n, 0, 40}] (* Vincenzo Librandi, May 26 2016 *)
(11*Range[40] -1)^3 (* G. C. Greubel, Oct 29 2019 *)
PROG
(Maxima) makelist((11*n+10)^3, n, 0, 40); /* Martin Ettl, Oct 21 2012 */
(Magma) [(11*n+10)^3: n in [0..40]]; // Vincenzo Librandi, May 26 2016
(PARI) vector(41, n, (11*n-1)^3) \\ G. C. Greubel, Oct 29 2019
(Sage) [(11*n+10)^3 for n in (0..40)] # G. C. Greubel, Oct 29 2019
(GAP) List([0..40], n-> (11*n+10)^3); # G. C. Greubel, Oct 29 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved