OFFSET
1,1
COMMENTS
In the definition one can take y=1. Thus the sequence becomes the number of terms in the polynomial of the product{k=1..n} (1-x^(k^2)).
MATHEMATICA
a[n_] := Length@ ExpandAll@ Product[(1 - x^(k^2)), {k, n}]; Array[f, 40]
PROG
(PARI) a(n)=my(P=prod(k=1, n, 1-'x^k^2)); sum(i=0, poldegree(P), polcoeff(P, i)!=0) \\ Charles R Greathouse IV, May 10 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Yuval Dekel (dekelyuval(AT)hotmail.com) and Robert G. Wilson v, May 10 2013
STATUS
approved