This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A299019 #22 Aug 11 2018 21:57:00 %S A299019 1,-2,-2,2,3,6,-1,-2,-10,-14,-7,-2,11,26,43,30,28,-6,-40,-92,-128, %T A299019 -132,-115,-48,54,200,339,484,499,476,274,-32,-501,-998,-1539,-1924, %U A299019 -2042,-1838,-1139,12,1664,3540,5588,7258,8392,8230,6812,3480,-1472,-8150,-15737,-23670,-30478 %N A299019 Expansion of Product_{k>=1} (1 - x^k)^(k+1). %C A299019 Convolution of A010815 and A073592. %C A299019 Convolution inverse of A005380. %F A299019 G.f.: exp(-Sum_{k>=1} (sigma_1(k) + sigma_2(k))*x^k/k). %t A299019 nmax = 52; CoefficientList[Series[Product[(1 - x^k)^(k + 1), {k, 1, nmax}], {x, 0, nmax}], x] %t A299019 nmax = 52; CoefficientList[Series[Exp[-Sum[(DivisorSigma[1, k] + DivisorSigma[2, k]) x^k/k, {k, 1, nmax}]], {x, 0, nmax}], x] %t A299019 a[n_] := a[n] = If[n == 0, 1, -Sum[Sum[d (d + 1), {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 52}] %Y A299019 Cf. A005380, A010815, A073592, A092346. %K A299019 sign %O A299019 0,2 %A A299019 _Ilya Gutkovskiy_, Aug 11 2018