login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A024185
Fourth elementary symmetric function of 3,4,...,n+5.
3
360, 2754, 12154, 40369, 111769, 271929, 600033, 1225983, 2353263, 4288713, 7480473, 12565462, 20427862, 32270182, 49698582, 74824242, 110382666, 159872916, 227718876, 319454751, 441937111, 603585895, 814656895, 1087548345, 1437144345
OFFSET
1,1
LINKS
FORMULA
G.f.: x*(360-486*x+328*x^2-113*x^3+16*x^4)/(1-x)^9. - R. J. Mathar, Sep 15 2009
a(n) = n*(n+1)*(n+2)*(n+3)*(15*n^4+450*n^3+5165*n^2+26922*n+53848)/5760. - R. J. Mathar, Sep 15 2009
MAPLE
S := proc(n, L) mul(x+i, i=L) ; expand(%) ; coeftayl(%, x=0, nops(L)-n) ; end:
A024185 := proc(n) S(4, [seq(j, j=3..n+5)]) ; end: seq(A024185(n), n=1..40) ; # R. J. Mathar, Sep 15 2009
PROG
(GAP) List([1..30], n->n*(n+1)*(n+2)*(n+3)*(15*n^4+450*n^3+5165*n^2+26922*n+53848)/5760); # Muniru A Asiru, May 19 2018
CROSSREFS
Sequence in context: A056380 A234555 A234550 * A033592 A305626 A056322
KEYWORD
nonn
EXTENSIONS
Variable set in definition changed by R. J. Mathar, Sep 15 2009
STATUS
approved