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.

User: Aniruddha Biswas

Aniruddha Biswas's wiki page.

Aniruddha Biswas has authored 11 sequences. Here are the ten most recent ones:

A378302 Number of nondegenerate balanced Boolean functions of n variables.

Original entry on oeis.org

0, 2, 2, 58, 12618, 601016690, 1832624137336299922, 23951146041928082853307218802404658090, 5768658823449206338089748357862286887548602533639737369730665340966207267034
Offset: 0

Author

Aniruddha Biswas, Nov 22 2024

Keywords

Comments

A Boolean function is degenerate on some variable if its output does not depend on the variable, and it is said to be non-degenerate if it is not degenerate on any variable.

Crossrefs

Programs

  • Mathematica
    a[n_]:=Sum[(-1)^(n-i)*Binomial[n,i]*Binomial[2^i,2^(i-1)],{i,n}]; Array[a,9,0] (* Stefano Spezia, Nov 24 2024 *)
  • Python
    from math import comb
    def A378302(n): return sum(-comb(n,i)*comb(1<Chai Wah Wu, Dec 11 2024

Formula

a(n) = Sum_{i=1..n} (-1)^(n-i) * binomial(n,i) * binomial(2^i,2^(i-1)).

A378300 Number of NPN-equivalence classes of balanced monotone Boolean functions of n or fewer variables.

Original entry on oeis.org

1, 1, 2, 4, 15, 581
Offset: 1

Author

Aniruddha Biswas, Nov 22 2024

Keywords

Comments

a(n) is also the number of NPN-equivalence classes of balanced unate Boolean functions of n or fewer variables.

Crossrefs

A374401 Number of balanced inequivalent nondegenerate unate functions of n or fewer variables.

Original entry on oeis.org

0, 2, 0, 4, 18, 230, 49918
Offset: 0

Author

Aniruddha Biswas, Jul 07 2024

Keywords

A374400 Number of balanced inequivalent unate functions of n or fewer variables.

Original entry on oeis.org

0, 2, 2, 6, 24, 254, 50172
Offset: 0

Author

Aniruddha Biswas, Jul 07 2024

Keywords

Comments

A Boolean function is said to be balanced if it takes the values 0 and 1 an equal number of times.

A374399 Number of inequivalent nondegenerate unate functions of n or fewer variables.

Original entry on oeis.org

2, 2, 6, 24, 166, 3266, 826308
Offset: 0

Author

Aniruddha Biswas, Jul 07 2024

Keywords

Comments

A Boolean function is degenerate on some variable if its output does not depend on the variable, and it is said to be non-degenerate if it is not degenerate on any variable.
Appears to be (essentially) the partial sums of A304997. - N. J. A. Sloane, Jul 26 2024

Crossrefs

A373697 Number of nondegenerate balanced unate functions of n or fewer variables.

Original entry on oeis.org

0, 2, 0, 8, 256, 16832, 31287424, 10393552784640
Offset: 0

Author

Aniruddha Biswas, Jun 13 2024

Keywords

Crossrefs

A373690 Number of balanced unate functions of n or fewer variables.

Original entry on oeis.org

0, 2, 4, 14, 296, 18202, 31392428, 10393772159334
Offset: 0

Author

Aniruddha Biswas, Jun 13 2024

Keywords

Crossrefs

Extensions

Typo in a(3) corrected by Andrei Zabolotskii, Jul 29 2025

A372495 Number of inequivalent unate functions of n or fewer variables.

Original entry on oeis.org

2, 4, 10, 34, 200, 3466, 829744
Offset: 0

Author

Aniruddha Biswas, May 03 2024

Keywords

Comments

A Boolean function is unate in a variable if it is either nondecreasing or nonincreasing with respect to that variable. Therefore in the circuit representation of unate functions, each variable appears either in its original form or in complemented form. Thus x⊕y = (x∧¬y)∨(¬x∧y) is not a unate function.
Moreover, two Boolean functions are said to be equivalent if they are equivalent under the permutation of variables. For example, f(x,y)=x is equivalent to f(x,y)=y under the permutation of input variables.

Examples

			The list of all 2-variable inequivalent unate functions f(x,y) is 0,1,x,¬x,x∧y,¬x∧y,¬x∧¬y,x∨y,¬x∨y,¬x∨¬y. So a(2)=10.
		

Crossrefs

A371722 Number of balanced nondegenerate monotone Boolean functions of n or fewer variables.

Original entry on oeis.org

0, 1, 0, 1, 16, 526, 488866, 81199631130
Offset: 0

Author

Aniruddha Biswas, Apr 04 2024

Keywords

Crossrefs

A371718 Number of balanced inequivalent nondegenerate monotone Boolean functions of n or fewer variables.

Original entry on oeis.org

0, 1, 0, 1, 2, 12, 935, 16439515
Offset: 0

Author

Aniruddha Biswas, Apr 05 2024

Keywords

Crossrefs

Extensions

a(7) added by Aniruddha Biswas, Oct 18 2024