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 A281455 #7 Jan 24 2017 09:56:41 %S A281455 1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,2,0,1, %T A281455 0,0,1,0,2,0,1,0,0,1,0,3,0,1,0,0,2,0,3,0,1,0,0,3,0,4,0,1,1,0,4,0,4,0, %U A281455 1,1,0,5,0,5,0,1,2,0,7,0,5,0,1,3,0,8,0 %N A281455 Expansion of Product_{k>=1} (1 + x^(7*k-2)). %H A281455 Vaclav Kotesovec, <a href="/A281455/b281455.txt">Table of n, a(n) for n = 0..10000</a> %F A281455 a(n) ~ exp(sqrt(n/21)*Pi) / (2^(12/7)*21^(1/4)*n^(3/4)) * (1 - (3*sqrt(21)/(8*Pi) + 11*Pi/(336*sqrt(21))) / sqrt(n)). - _Vaclav Kotesovec_, Jan 22 2017, extended Jan 24 2017 %t A281455 nmax = 100; CoefficientList[Series[Product[(1 + x^(7*k - 2)), {k, 1, nmax}], {x, 0, nmax}], x] %t A281455 nmax = 100; poly = ConstantArray[0, nmax + 1]; poly[[1]] = 1; poly[[2]] = 0; Do[If[Mod[k, 7] == 5, Do[poly[[j + 1]] += poly[[j - k + 1]], {j, nmax, k, -1}]; ], {k, 2, nmax}]; poly %Y A281455 Cf. A109707, A281245, A281456, A281457, A281458, A280457. %K A281455 nonn %O A281455 0,32 %A A281455 _Vaclav Kotesovec_, Jan 22 2017