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!)
A138802 Number of monomials in discriminant of symbolic Tschirnhausen polynomial of degree n (with three zero coefficients at x^(n-1), x^(n-2) and x^(n-3)). 2
1, 1, 1, 2, 2, 7, 26, 115, 521, 2502, 12389, 63236, 330455, 1762852 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
EXAMPLE
a(5)=7 because discriminant of sextic x^6+a*x^2+b*x+c is -27*a^4*b^2 + 256*b^5 + 108*a^5*c - 1600*a*b^3*c + 2250*a^2*b*c^2 + 3125*c^4 that consists of 6 monomials (parts).
MATHEMATICA
a = {1, 1, 1}; Do[k = 0; Do[If[n > s - 4, If[(n > s - 1) && (n > s - 2) && (n > s - 3), k = k + x^n], k = k + f[n] x^n], {n, 0, s}]; m = Resultant[k, D[k, x], x]; AppendTo[a, Length[m]], {s, 4, 10}]; a (* Artur Jasinski, fixed by Vaclav Kotesovec, Mar 20 2019 *)
Flatten[{1, 1, 1, Table[Length[Discriminant[x^n + Sum[Subscript[c, k]*x^k, {k, 0, n-4}], x]], {n, 4, 10}]}] (* Vaclav Kotesovec, Mar 20 2019 *)
CROSSREFS
Sequence in context: A342644 A069101 A221648 * A292016 A350020 A359582
KEYWORD
nonn,more
AUTHOR
Artur Jasinski, Mar 30 2008
EXTENSIONS
a(11)-a(13) from Vaclav Kotesovec, Mar 21 2019
a(14) from Vaclav Kotesovec, Mar 28 2019
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 25 16:42 EDT 2024. Contains 371989 sequences. (Running on oeis4.)