login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A127881 Integers of the form x^5/120 + x^4/24 + x^3/6 + x^2/2 + x + 1 with x > 0. 5
241231, 7057861, 21166951, 52066891, 216295321, 654480151, 1619368381, 2411089396, 3486017011, 6776093041, 12182173471, 20592045301, 26260194241, 33113005531, 51096161161, 76160729191, 110218336621, 131302849486 (list; graph; refs; listen; history; text; internal format)
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
MATHEMATICA
a = {}; Do[If[IntegerQ[1 + x + x^2/2 + x^3/6 + x^4/24 + x^5/120], AppendTo[a, 1 + x + x^2/2 + x^3/6 + x^4/24 + x^5/120]], {x, 1, 1000}]; a
Select[Table[ x^5/120+x^4/24+x^3/6+x^2/2+x+1, {x, 450}], IntegerQ] (* Harvey P. Dale, Jan 20 2019 *)
PROG
(PARI) for(x=1, 500, y=x^5+5*x^4+20*x^3+60*x^2+120*x+120; if(y%120==0, print1(y/120, ", "))) \\ Michael B. Porter, Jan 29 2010
(PARI) isA127881(n)={local(r); r=0; fordiv(120*n-120, x, if(x^5/120+x^4/24+x^3/6+x^2/2+x+1==n, r=1)); r} \\ Michael B. Porter, Jan 29 2010
CROSSREFS
Sequence in context: A190388 A249194 A281887 * A134857 A251007 A078871
KEYWORD
nonn
AUTHOR
Artur Jasinski, Feb 04 2007
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)