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 A294503 #14 Apr 22 2019 07:05:33 %S A294503 1,0,1,1,-3,10,-23,48,-92,171,-321,626,-1265,2576,-5099,9478,-15925, %T A294503 22617,-21816,-8506,121659,-436121,1204710,-2962759,6860591,-15427559, %U A294503 34323613,-76269455,169591278,-376162414,827819644,-1798045927,3839392935,-8041078328 %N A294503 Inverse binomial transform of A026007. %H A294503 Vaclav Kotesovec, <a href="/A294503/b294503.txt">Table of n, a(n) for n = 0..3000</a> %F A294503 a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n,k) * A026007(k). %F A294503 G.f.: (1/(1 + x))*Product_{k>=1} (1 + x^k/(1 + x)^k)^k. - _Ilya Gutkovskiy_, Aug 20 2018 %t A294503 nmax = 40; s = CoefficientList[Series[Product[(1+x^k)^k, {k, 1, nmax}], {x, 0, nmax}], x]; Table[Sum[(-1)^(n-k) * Binomial[n, k] * s[[k+1]], {k, 0, n}], {n, 0, nmax}] %Y A294503 Cf. A026007, A294501, A294502, A294505. %K A294503 sign %O A294503 0,5 %A A294503 _Vaclav Kotesovec_, Nov 01 2017