cp's OEIS Frontend

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.

A094033 Number of connected 2-element antichains on a labeled n-set.

Original entry on oeis.org

0, 0, 0, 3, 18, 75, 270, 903, 2898, 9075, 27990, 85503, 259578, 784875, 2366910, 7125303, 21425058, 64373475, 193317030, 580344303, 1741819338, 5227030875, 15684238350, 47059006503, 141189602418, 423593973075, 1270832250870
Offset: 0

Views

Author

Goran Kilibarda, Vladeta Jovovic, Apr 22 2004

Keywords

Comments

Let P(A) be the power set of an n-element set A. Then a(n+1) = the number of pairs of elements {x,y} of P(A) for which either 0) x and y are disjoint and for which x is not a subset of y and y is not a subset of x, or 1) x and y are intersecting and for which either x is a proper subset of y or y is a proper subset of x. - Ross La Haye, Jan 10 2008

Crossrefs

Programs

  • Maple
    [seq(stirling2(n,3)*3,n=0..26)]; # Zerinvary Lajos, Dec 06 2006
  • Mathematica
    Table[3 StirlingS2[n, 3], {n, 0, 26}] (* Michael De Vlieger, Nov 30 2015 *)
  • PARI
    x='x+O('x^50); concat([0,0,0],Vec(serlaplace((exp(3*x)-3*exp(2*x)+3*exp(x)-1)/2!))) \\ G. C. Greubel, Oct 06 2017

Formula

a(n) = 3 * A000392(n).
E.g.f.: (exp(3*x)-3*exp(2*x)+3*exp(x)-1)/2!.
From Colin Barker, Mar 31 2012: (Start)
a(n) = (3^n-3*2^n+3)/2.
a(n) = 6*a(n-1) - 11*a(n-2) + 6*a(n-3).
G.f.: 3*x^3/((1-x)*(1-2*x)*(1-3*x)). (End)