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.

A318130 Number of sets of subsets of {1,...,n} with intersection {}.

Original entry on oeis.org

2, 3, 11, 219, 64595, 4294642035, 18446744047940725979, 340282366920938463334247399005993378251, 115792089237316195423570985008687907850547725730273056332267095982282337798563
Offset: 0

Views

Author

Gus Wiseman, Aug 18 2018

Keywords

Examples

			The a(2) = 11 sets of sets:
  {}
  {{}}
  {{},{1}}
  {{},{2}}
  {{1},{2}}
  {{},{1,2}}
  {{},{1},{2}}
  {{},{1},{1,2}}
  {{},{2},{1,2}}
  {{1},{2},{1,2}}
  {{},{1},{2},{1,2}}
		

Crossrefs

Programs

  • Mathematica
    Table[Length[Select[Subsets[Subsets[Range[n]]],Or[#=={},Intersection@@#=={}]&]],{n,0,4}]

Formula

Binomial transform of A131288.
Inverse binomial transform of A119563(n) = 2^(2^n) + 2^n - 1.