OFFSET
1,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 1..1000
Arnold Knopfmacher and Neville Robbins, Identities for the total number of parts in partitions of integers, Util. Math. 67 (2005), 9-18. (See last line of text.)
MATHEMATICA
nmax = 50; A067619 = CoefficientList[Series[Sum[k*x^(2*k - 1)*Product[1 + x^(2*j - 1), {j, 1, k - 1}], {k, 1, nmax + 1}], {x, 0, nmax + 1}], x]; A000700 = CoefficientList[Series[Product[1 + x^(2 k + 1), {k, 0, nmax + 1}], {x, 0, nmax + 1}], x]; b = ConstantArray[0, nmax + 1]; b[[1]] = 0; Do[b[[n + 1]] = (A067619[[n + 1]] - Sum[A000700[[n - k + 1]]*b[[k + 1]], {k, 0, n - 1}]) / A000700[[1]], {n, 1, nmax}]; Rest[b] (* Vaclav Kotesovec, Jun 28 2016 *)
CROSSREFS
KEYWORD
sign
AUTHOR
N. J. A. Sloane, Feb 23 2011
EXTENSIONS
More terms from Vaclav Kotesovec, Jun 28 2016
STATUS
approved