OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Richard P. Brent, Generalising Tuenter's binomial sums, arXiv:1407.3533 [math.CO], 2014 (page 16).
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
O.g.f.: (12465 - 62324*x + 127926*x^2 - 72660*x^3 + 142049*x^4)/(1-x)^5.
E.g.f.: (12465 - 12464*x + 7872*x^2 + 7680*x^3 + 6144*x^4)*exp(x).
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5).
See page 7 in Brent's paper:
A272133(n) = (2*n-1)^2*a(n) - 4*(n-1)^2*a(n-1).
n*a(n) = 1 + 3^9*(n-1)/(n+1) + 5^9*((n-1)*(n-2))/((n+1)*(n+2)) + ... for n >= 1. See A245244. - Peter Bala, Jan 19 2019
MAPLE
[6144*n^4-29184*n^3+52416*n^2-41840*n+12465$n=0..30]; # Muniru A Asiru, Jan 28 2019
MATHEMATICA
Table[6144 n^4 - 29184 n^3 + 52416 n^2 - 41840 n + 12465, {n, 0, 40}]
LinearRecurrence[{5, -10, 10, -5, 1}, {12465, 1, 3281, 68385, 388849}, 30] (* Harvey P. Dale, Aug 06 2022 *)
PROG
(Magma) [6144*n^4 - 29184*n^3 + 52416*n^2 - 41840*n + 12465: n in [0..40]];
(PARI) lista(nn) = for(n=0, nn, print1(6144*n^4-29184*n^3+52416*n^2-41840*n+12465, ", ")); \\ Altug Alkan, Apr 26 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Apr 26 2016
STATUS
approved