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.

A051112 Number of monotone Boolean functions of n variables with 4 mincuts. Also Sperner systems with 4 blocks.

Original entry on oeis.org

0, 0, 0, 0, 25, 2020, 82115, 2401910, 58089465, 1245331920, 24625121455, 460316430970, 8266174350005, 144171200793620, 2461016066613195, 41343340015862430, 686274244801356145, 11289648429330100120
Offset: 0

Views

Author

Vladeta Jovovic, Goran Kilibarda, Zoran Maksimovic

Keywords

References

  • J. L. Arocha, Antichains in ordered sets, (in Spanish) An. Inst. Mat. UNAM, vol. 27, 1987, 1-21.
  • L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 293, #8, s(n,4).
  • V. Jovovic, G. Kilibarda, On enumeration of the class of all monotone Boolean function, Belgrade, 1999, in preparation.

Crossrefs

Programs

  • Mathematica
    Table[(1/4!)*(16^n-12*12^n+24*10^n+4*9^n-18*8^n+6*7^n-36*6^n+36*5^n+11*4^n-22*3^n+6*2^n),{n,0,20}] (* or *) LinearRecurrence[{82,-2970,62700,-856713,7947786,-51019100,226259000,-678011136,1304341632,-1445575680,696729600},{0,0,0,0,25,2020,82115,2401910,58089465,1245331920,24625121455},20] (* Harvey P. Dale, Nov 26 2019 *)
  • PARI
    a(n)=(16^n-12*12^n+24*10^n+4*9^n-18*8^n+6*7^n-36*6^n+36*5^n+11*4^n -22*3^n+6*2^n)/24 \\ Charles R Greathouse IV, Mar 14 2012

Formula

a(n) = (1/4!)*(16^n - 12*12^n + 24*10^n + 4*9^n - 18*8^n + 6*7^n - 36*6^n + 36*5^n + 11*4^n - 22*3^n + 6*2^n).
From Michael Somos: (Start)
a(n) = 82*a(n - 1) - 2970*a(n - 2) + 62700*a(n - 3) - 856713*a(n - 4) + 7947786*a(n - 5) - 51019100*a(n - 6) + 226259000*a(n - 7) - 678011136*a(n - 8) + 1304341632*a(n - 9) - 1445575680*a(n - 10) + 696729600*a(n - 11).
G.f.: 5x^4(5-6x-1855x^2+20076x^3-44356x^4-215280x^5+759168x^6) / ((1-3x)(1-4x)(1-5x)(1-6x)(1-2x)(1-7x)(1-8x)(1-9x)(1-10x)(1-12x)(1-16x)). (End)