OFFSET
0,2
COMMENTS
In the definition one can take y=1. - Emeric Deutsch, Jan 01 2008
LINKS
Joerg Arndt, Table of n, a(n) for n = 0..1000
Dorin Andrica and Ovidiu Bagdasar, On some results concerning the polygonal polynomials, Carpathian Journal of Mathematics (2019) Vol. 35, No. 1, 1-11.
MAPLE
a:=proc(n) options operator, arrow: nops(expand(product(x^j-y^j, j=1..n))) end proc: seq(a(n), n=0..50); # Emeric Deutsch, Jan 01 2008
MATHEMATICA
Table[Length[Expand[Times@@(x^Range[n]-1)]], {n, 50}] (* Harvey P. Dale, Mar 01 2012 *)
PROG
(PARI) a(n)=#select(w->w, Vec(prod(k=1, n, 1-'x^k))); \\ Joerg Arndt, Apr 12 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Yuval Dekel (dekelyuval(AT)hotmail.com), Aug 03 2003
EXTENSIONS
More terms from Emeric Deutsch, Jan 01 2008
a(0)=1 prepended by Alois P. Heinz, Apr 12 2017
STATUS
approved