OFFSET
0,4
COMMENTS
From Robert Israel, Nov 09 2017: (Start)
a(n) is the coefficient of x^(3*n*(n+1)/2) in Product_{k=0..n} (x^(2*k)+1)^3.
a(n) = 0 if n == 1 or 2 (mod 4). (End)
LINKS
Ray Chandler, Table of n, a(n) for n = 0..1114 (terms < 10^1000)
Ovidiu Bagdasar and Dorin Andrica, New results and conjectures on 2-partitions of multisets, 2017 7th International Conference on Modeling, Simulation, and Applied Optimization (ICMSAO).
MAPLE
seq(coeff(mul(x^k+1/x^k, k=1..n)^3, x, 0), n=0..50); # Robert Israel, Nov 09 2017
PROG
(PARI) a(n) = polcoef(prod(k=1, n, (x^k + 1/x^k)^3), 0); \\ Michel Marcus, Jan 07 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jul 12 2008
STATUS
approved