OFFSET
8,1
LINKS
Vincenzo Librandi and Bruno Berselli, Table of n, a(n) for n = 8..10008
FORMULA
a(n) = ((15n+8)/16!) * Product_{i=-7..7} (n+i).
G.f.: x^8*(8+7*x)/(1-x)^17. - Harvey P. Dale, Jul 24 2011
MATHEMATICA
Table[(Times@@(n+Range[0, 14])(15n+113))/16!, {n, 30}] (* or *) CoefficientList[ Series[ (-8-7 x)/(-1+x)^17, {x, 0, 30}], x] (* Harvey P. Dale, Jul 24 2011 *)
PROG
(Octave, MATLAB) for n=8:20 a = zeros(n); for i=1:n for j=1:n a(i, j) = max(i, j); end end b = poly(a); b(9) end
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Paul Max Payton, Sep 23 2005
EXTENSIONS
More terms from Harvey P. Dale, Jul 24 2011
Offset changed from 0 to 8, formulas and b-file adapted by Bruno Berselli, Mar 29 2012
STATUS
approved