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!)
A369983 Maximum of the absolute value of the coefficients of (1 - x)^3 * (1 - x^2)^3 * (1 - x^3)^3 * ... * (1 - x^n)^3. 1
1, 3, 8, 15, 44, 50, 117, 186, 356, 561, 972, 1761, 3508, 5789, 10470, 19023, 35580, 62388, 113418, 205653, 376496, 674085, 1226181, 2211462, 4056220, 7287672, 13261764, 24005627, 43800562, 79033269, 143513301, 260061408, 473603594, 855436899, 1553736558, 2813222766 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
MATHEMATICA
Table[Max[Abs[CoefficientList[Product[(1 - x^k)^3, {k, 1, n}], x]]], {n, 0, 35}]
PROG
(PARI) a(n) = vecmax(apply(abs, Vec(prod(i=1, n, (1-x^i)^3)))); \\ Michel Marcus, Feb 07 2024
(Python)
from collections import Counter
def A369983(n):
c = {0:1}
for k in range(1, n+1):
d = Counter(c)
for j in c:
a = c[j]
d[j+k] -= 3*a
d[j+2*k] += 3*a
d[j+3*k] -= a
c = d
return max(map(abs, c.values())) # Chai Wah Wu, Feb 07 2024
CROSSREFS
Sequence in context: A032064 A151397 A369711 * A216466 A303259 A192167
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 07 2024
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 September 12 02:35 EDT 2024. Contains 375842 sequences. (Running on oeis4.)