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.

A007537 Number of proper covers of an n-set.

Original entry on oeis.org

0, 1, 45, 15913, 1073579193, 4611686005542975085, 85070591730234615801280047645054636261, 28948022309329048855892746252171976961956366698726387156269151989162886489297
Offset: 1

Views

Author

Keywords

Comments

This sequence is likely to occur with doubled values and offset 0:
A000371(n) - 2^(2^n-1) = 1, 0, 2, 90, 31826, 2147158386, ... - Tilman Piesk, May 24 2024

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Maple
    A007537 := proc(n) (1/2)*add((-1)^k*binomial(n,k)*2^(2^(n-k)),k=0..n)-2^(2^n)/4 end;
  • Mathematica
    Table[1/2 Sum[(-1)^k Binomial[n,k]2^(2^(n-k)),{k,0,n}]-2^2^n/4,{n,8}] (* Harvey P. Dale, Oct 31 2011 *)

Formula

a(n) ~ 2^(2^n)/4. - Vaclav Kotesovec, Jul 02 2016
a(n) = A003465(n) - 2^(2^n-2). - Tilman Piesk, May 24 2024

Extensions

One more term from Emeric Deutsch, Aug 01 2005