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 A059585 #23 Jul 02 2025 16:02:00 %S A059585 0,0,12,68,235,636,1478,3088,5958,10800,18612,30756,49049,75868, %T A059585 114270,168128,242284,342720,476748,653220,882759,1178012,1553926, %U A059585 2028048,2620850,3356080,4261140,5367492,6711093,8332860,10279166,12602368 %N A059585 Number of labeled 3-node T_0-hypergraphs with n hyperedges (empty hyperedges and multiple hyperedges included). %C A059585 A hypergraph is a T_0 hypergraph if for every two distinct nodes there exists a hyperedge containing one but not the other node. %H A059585 G. C. Greubel, <a href="/A059585/b059585.txt">Table of n, a(n) for n = 0..1000</a> %H A059585 <a href="/index/Rec#order_08">Index entries for linear recurrences with constant coefficients</a>, signature (8,-28,56,-70,56,-28,8,-1). %F A059585 a(n) = binomial(n + 7, n) - 3*binomial(n + 3, n) + 2*binomial(n + 1, n) = n*(n - 1)*(n + 1)*(n^4 + 28*n^3 + 323*n^2 + 1988*n + 4572)/5040. %F A059585 G.f.: x^2*(2-x)^2*(3-4*x+2*x^2)/(1-x)^8. - _Colin Barker_, Jun 25 2012 %p A059585 for n from 0 to 100 do printf(`%d,`,n*(n - 1)*(n + 1)*(n^4 + 28*n^3 + 323*n^2 + 1988*n + 4572)/5040) od: %t A059585 CoefficientList[Series[x^2*(2 - x)^2*(3 - 4*x + 2*x^2)/(1 - x)^8, {x, 0, 50}], x] (* _G. C. Greubel_, Oct 06 2017 *) %t A059585 LinearRecurrence[{8, -28, 56, -70, 56, -28, 8, -1}, {0, 0, 12, 68, 235, 636, 1478, 3088}, 33] (* _Vincenzo Librandi_, Oct 07 2017 *) %o A059585 (PARI) x='x+O('x^50); concat([0,0],Vec(x^2*(2-x)^2*(3-4*x+2*x^2)/(1-x)^8)) \\ _G. C. Greubel_, Oct 06 2017 %o A059585 (Magma) [n*(n-1)*(n+1)*(n^4+28*n^3+323*n^2+1988*n+ 4572)/5040: n in [0..35]]; // _Vincenzo Librandi_, Oct 07 2017 %Y A059585 Cf. A059084, a(n)=A059584(n, 3), A059586. %K A059585 easy,nonn %O A059585 0,3 %A A059585 _Vladeta Jovovic_, Goran Kilibarda, Jan 23 2001 %E A059585 More terms from _James Sellers_, Jan 24 2001