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

A358400
a(n) is the number of reducible monic quintic polynomials (x^5 + r*x^4 + s*x^3 + t*x^2 + u*x + v) with integer coefficients bounded by naïve height n (abs(r), abs(s), abs(t), abs(u), abs(v) <= n).
2
139, 1313, 5359, 15365, 34229, 68385, 120421, 200839, 312057, 468827, 669591, 943175, 1274089, 1701441, 2216841, 2856379, 3594651, 4510437, 5541135, 6788823, 8195941, 9845089, 11670925, 13842429, 16191555
OFFSET
1,1
PROG
(PARI)
{ a(n) = \\ A358400
my( ct = 0 );
for (c1 = -n, n,
for (c2 = -n, n,
for (c3 = -n, n,
for (c4 = -n, n,
for (c5 = -n, n,
if ( ! polisirreducible( Pol([1, c1, c2, c3, c4, c5]) ), ct += 1 );
); ); ); ); );
return( ct );
}
vector(7, n, a(n) )
\\ Joerg Arndt, Dec 05 2022
CROSSREFS
KEYWORD
nonn,more
AUTHOR
STATUS
approved