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!)
A186860 Largest coefficient of (1)(1+2x)(1+2x+3x^2)*...*(1+2x+3x^2+...+(n+1)*x^n). 2
1, 2, 7, 49, 562, 9132, 207915, 6296448, 239972192, 11427298486, 661227186254, 45688884832738, 3716852205228166, 351101915633367990, 38275029480566516322, 4750162039324230600200, 666311679640315952033655, 105085327413072323807645048 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Conjecture: a(n) ~ 3^(3/2) * sqrt(Pi) * n^(2*n + 1/2) / (2^(n-1) * exp(2*n)). - Vaclav Kotesovec, Jan 05 2023
MATHEMATICA
f[n_] := Max@ CoefficientList[ Expand@ Product[ Sum[(i + 1)*x^i, {i, 0, j}], {j, n - 1}], x]; Array[f, 18]
PROG
(Sage)
def A186860(n):
p = prod(sum(i*x^(i-1) for i in (1..k)) for k in (1..n))
return Integer(max(p.coefficients())[0]) # D. S. McNeil, Feb 28 2011
CROSSREFS
Sequence in context: A101538 A045598 A293043 * A139008 A058721 A363862
KEYWORD
easy,nonn
AUTHOR
Robert G. Wilson v, Feb 27 2011
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 23 13:51 EDT 2024. Contains 371914 sequences. (Running on oeis4.)