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!)
A359320 Maximal coefficient of (1 + x) * (1 + x^16) * (1 + x^81) * ... * (1 + x^(n^4)). 4
1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 5, 5, 6, 9, 13, 17, 24, 34, 53, 84, 130, 177, 290, 500, 797, 1300, 2066, 3591, 6090, 10298, 17330, 29888, 50811, 88358, 153369, 280208, 481289, 845090, 1474535, 2703811, 4808816, 8329214, 14806743, 27529781, 48859783, 87674040, 156471632 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,10
LINKS
MAPLE
f:= proc(n) local i; max(coeffs(expand(mul(1+x^(i^4), i=1..n)))) end proc:
map(f, [$1..50]); # Robert Israel, Dec 26 2022
PROG
(PARI) a(n) = vecmax(Vec(prod(k=1, n, 1+x^(k^4)))); \\ Michel Marcus, Dec 26 2022
(Python)
from collections import Counter
def A359320(n):
c = {0:1, 1:1}
for i in range(2, n+1):
j, d = i**4, Counter(c)
for k in c:
d[k+j] += c[k]
c = d
return max(c.values()) # Chai Wah Wu, Jan 31 2024
CROSSREFS
Sequence in context: A320388 A264396 A007360 * A029144 A173244 A304114
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 25 2022
EXTENSIONS
a(38)-a(50) from Seiichi Manyama, Dec 26 2022
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 May 4 03:52 EDT 2024. Contains 372225 sequences. (Running on oeis4.)