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!)
A095152 Number of 3-block covers of a labeled n-set. 1
1, 32, 321, 2560, 18881, 135072, 954241, 6705920, 47020161, 329377312, 2306349761, 16146574080, 113032395841, 791245902752, 5538778714881, 38771623191040, 271401878897921, 1899814701967392, 13298707562817601, 93090966886860800, 651636810049438401 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
LINKS
FORMULA
a(n) = (1/3!)*(11-6*3^n+7^n).
a(n) = 11*a(n-1)-31*a(n-2)+21*a(n-3). G.f.: -x^2*(21*x+1) / ((x-1)*(3*x-1)*(7*x-1)). - Colin Barker, Jul 12 2013
a(n) = sum(i=0..n, (-1)^i * C(n,i) * C(2^(n-i)-1,3) ). - Geoffrey Critzer, Aug 24 2014
MAPLE
seq((11-6*3^n+7^n)/6, n=2..50); # Robert Israel, Aug 25 2014
MATHEMATICA
nn = 19; Table[Sum[(-1)^i Binomial[n, i] Binomial[2^(n - i) - 1, 3], {i, 0, n}], {n, 2, nn}] (* Geoffrey Critzer, Aug 24 2014 *)
Table[(11 - 6*3^n + 7^n)/6, {n, 2, 20}] (* Wesley Ivan Hurt, Aug 26 2014 *)
PROG
(Magma) [(11-6*3^n+7^n)/6 : n in [2..30]]; // Wesley Ivan Hurt, Aug 26 2014
CROSSREFS
Column of A055154.
Sequence in context: A173952 A239422 A165008 * A087342 A083468 A125395
KEYWORD
easy,nonn
AUTHOR
Vladeta Jovovic, May 31 2004
EXTENSIONS
More terms from Colin Barker, Jul 12 2013
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 April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)