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.

A134018 Let P(A) be the power set of an n-element set A. Then a(n) = the number of pairs of elements {x,y} of P(A) for which either 0) x and y are disjoint and for which either x is a subset of y or y is a subset of x, or 1) x and y are intersecting but for which x is not a subset of y and y is not a subset of x.

Original entry on oeis.org

0, 1, 3, 10, 45, 226, 1113, 5230, 23565, 102826, 438273, 1836550, 7601685, 31183426, 127084233, 515429470, 2083077405, 8396552026, 33779262993, 135696871990, 544528258725, 2183337968626, 8749031918553, 35043178292110, 140313885993645, 561679104393226
Offset: 0

Views

Author

Ross La Haye, Jan 10 2008

Keywords

Examples

			a(3) = 10 because for P(A) = {{},{1},{2},{3},{1,2},{1,3},{2,3},{1,2,3}} we have for case 0 {{},{1}}, {{},{2}}, {{},{3}}, {{},{1,2}}, {{},{1,3}}, {{},{2,3}}, {{},{1,2,3}} and we have for case 1 {{1,2},{1,3}}, {{1,2},{2,3}}, {{1,3},{2,3}}.
		

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{10,-35,50,-24},{0,1,3,10},30] (* Harvey P. Dale, Dec 01 2017 *)

Formula

a(n) = (1/2)(4^n - 3^(n+1) + 5*2^n - 3) = 3*StirlingS2(n+1,4) + StirlingS2(n+1,2).
G.f.: x*(1-7*x+15*x^2)/((1-x)*(1-2*x)*(1-3*x)*(1-4*x)). [Colin Barker, Jul 29 2012]

Extensions

More terms from Harvey P. Dale, Dec 01 2017