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 A049056 #23 Oct 08 2017 17:39:41 %S A049056 1,1,3,19,207,3691,103263,4415419,283796607,27094905451,3813398797023, %T A049056 786844659227419,237151202183603007,104128385332221915211, %U A049056 66478899089080159079583,61624041121329496987905019 %N A049056 Number of minimal ordered covers of a labeled n-set. %H A049056 Vincenzo Librandi, <a href="/A049056/b049056.txt">Table of n, a(n) for n = 0..100</a> %H A049056 R. J. Clarke, <a href="http://dx.doi.org/10.1016/0012-365X(90)90146-9">Covering a set by subsets</a>, Discrete Math., 81 (1990), 147-152. %F A049056 E.g.f.: Sum_{n>=0} (exp(x)-1)^n*exp(x*(2^n-n-1)), cf. A046165. - _Vladeta Jovovic_, Sep 01 2005 %t A049056 a[0] = 1; a[n_] := Sum[ (-1)^i*Binomial[k, i]*(2^k-1-i)^n, {k, 0, n}, {i, 0, k} ]; Table[a[n], {n, 0, 15}] (* _Jean-François Alcover_, Jan 27 2012, after _Michael Somos_ *) %o A049056 (PARI) {a(n)=sum(k=0, n, sum(i=0, k, (-1)^i*binomial(k, i)*(2^k-1-i)^n))} /* _Michael Somos_, Oct 16 2006 */ %Y A049056 Row sums of A049055. %K A049056 nonn,easy,nice %O A049056 0,3 %A A049056 _N. J. A. Sloane_, _Michael Somos_