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”).

A127883
a(n) = 60*(n^5/120 + n^4/24 + n^3/6 + n^2/2 + n + 1).
7
163, 436, 1104, 2572, 5485, 10788, 19786, 34204, 56247, 88660, 134788, 198636, 284929, 399172, 547710, 737788, 977611, 1276404, 1644472, 2093260, 2635413, 3284836, 4056754, 4967772, 6035935, 7280788, 8723436, 10386604, 12294697
OFFSET
1,1
COMMENTS
Generating polynomial is Schur's polynomial of 5-degree. Schur's polynomials n degree are n-th first term of series expansion of e^x function. All polynomials are non-reducible and belonging to the An alternating Galois transitive group if n is divisible by 4 or to Sn symmetric Galois Group in other case (proof Schur, 1930).
LINKS
FORMULA
G.f.: x*(163-542*x+933*x^2-772*x^3+338*x^4-60*x^5)/(1-x)^6. - Colin Barker, Apr 02 2012
MAPLE
A127883:=n->60*(n^5/120 + n^4/24 + n^3/6 + n^2/2 + n + 1); seq(A127883(n), n=1..40); # Wesley Ivan Hurt, Mar 27 2014
MATHEMATICA
Table[1/2 (120+x (120+x (60+x (20+x (5+x))))), {x, 40}] (* Harvey P. Dale, Mar 12 2011 *)
CoefficientList[Series[(163 - 542 x + 933 x^2 - 772 x^3 + 338 x^4 - 60 x^5)/(1 - x)^6, {x, 0, 50}], x] (* Vincenzo Librandi, Mar 28 2014 *)
PROG
(Magma) [n^4*(n+5)/2+10*(n^3+3*n^2+6*n+6): n in [1..30]]; // Bruno Berselli, Apr 03 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Feb 04 2007
STATUS
approved