login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A059301 Number of filter bases of an n-set. 1
1, 5, 31, 569, 165211, 12885396101, 64563604303081738807, 1361129467683753854111752846879267953905, 521064401567922879406069432539095585345840013599959430520674634220747299433267 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
REFERENCES
L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 91, #42.
LINKS
FORMULA
a(n) = Sum_{k=0..n-1} binomial(n,k)*2^(2^k-1).
a(n) ~ n * 2^(2^(n-1)-1). - Vaclav Kotesovec, Nov 27 2017
MATHEMATICA
Table[Sum[Binomial[n, k]*2^(2^k - 1), {k, 0, n - 1}], {n, 1, 10}] (* G. C. Greubel, Jan 06 2017 *)
PROG
(PARI) { for (n = 1, 12, a=0; for (k=0, n-1, a+=binomial(n, k)*2^(2^k - 1); ); write("b059301.txt", n, " ", a); ) } \\ Harry J. Smith, Jun 25 2009
(PARI) a(n) = sum(k=0, n-1, binomial(n, k)*2^(2^k-1)); \\ Michel Marcus, Jan 03 2016
CROSSREFS
Sequence in context: A020514 A201307 A228647 * A225158 A299887 A088548
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jan 26 2001
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 12 06:47 EDT 2024. Contains 372432 sequences. (Running on oeis4.)