OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (6, -15, 20, -15, 6, -1).
FORMULA
a(0)=243, a(1)=537824, a(2)=9765625, a(3)=60466176, a(4)=229345007, a(5)=656356768, a(n) = 6*a(n-1)-15*a(n-2)+20*a(n-3)-15*a(n-4)+6*a(n-5)-a(n-6). - Harvey P. Dale, Apr 30 2013
G.f.: (243 + 536366*x + 6542326*x^2 + 9934926*x^3 + 2279491*x^4 + 32768*x^5)/(x - 1)^6. - Indranil Ghosh, Apr 15 2017
MAPLE
MATHEMATICA
(* From Harvey P. Dale, Apr 30 2013: (Start) *)
(11*Range[0, 20]+3)^5
LinearRecurrence[{6, -15, 20, -15, 6, -1}, {243, 537824, 9765625, 60466176, 229345007, 656356768}, 20] (* End *)
CoefficientList[Series[(243 + 536366*x + 6542326*x^2 + 9934926*x^3 + 2279491*x^4 + 32768*x^5)/(x - 1)^6, {x, 0, 50}], x] (* Indranil Ghosh, Apr 15 2017 *)
Table[(11 n + 3)^5, {n, 0, 30}] (* Vincenzo Librandi, Apr 16 2017 *)
PROG
(PARI) a(n) = (11*n + 3)^5; \\ Indranil Ghosh, Apr 15 2017
(Magma) [(11*n+3)^5: n in [0..20]]; // Vincenzo Librandi, Apr 16 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved