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 A296387 #4 Dec 11 2017 14:28:52 %S A296387 1,1,2,6,8,10,14,18,26,34,46,58,74,90,114,138,174,210,260,310,378,446, %T A296387 536,626,748,870,1034,1198,1410,1622,1892,2162,2510,2858,3306,3754, %U A296387 4316,4878,5576,6274,7144,8014,9096,10178,11508,12838,14458,16078,18048,20018,22410,24802,27690,30578,34040 %N A296387 a(0) = a(1) = 1; a(n) = [x^n] Product_{k=1..n-1} (1 + x^a(k))/(1 - x^a(k)). %H A296387 <a href="/index/Par#part">Index entries for sequences related to partitions</a> %F A296387 G.f. A(x) = Sum_{n>=0} a(n)*x^n satisfies A(x) = -x - 2*x^2 + Product_{n>=1} (1 + x^a(n))/(1 - x^a(n)). %t A296387 a[n_] := a[n] = SeriesCoefficient[Product[(1 + x^a[k])/(1 - x^a[k]), {k, 1, n - 1}], {x, 0, n}]; a[0] = a[1] = 1; Table[a[n], {n, 0, 54}] %Y A296387 Cf. A015128, A151945, A229362, A293806. %K A296387 nonn %O A296387 0,3 %A A296387 _Ilya Gutkovskiy_, Dec 11 2017