OFFSET
0,2
COMMENTS
a(n) = coefficient of x^(n*(n+1)) in the polynomial Product_{k=1..n} (1 + x^k + x^(2*k))^2, and is the maximal such coefficient as well.
LINKS
Ray Chandler, Table of n, a(n) for n = 0..1052 (terms < 10^1000)
Steven R. Finch, Signum equations and extremal coefficients, February 7, 2009. [Cached copy, with permission of the author]
FORMULA
a(n) is the constant term in expansion of Product_{k=1..n} (x^k + 1 + 1/x^k)^2. - Ilya Gutkovskiy, Jan 22 2024
MATHEMATICA
Table[Coefficient[Expand[Product[(1 + x^k + x^(2*k))^2, {k, 1, n}]], x, n*(n + 1)], {n, 0, 20}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Steven Finch, Feb 05 2009
STATUS
approved