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.

A294672 Number of disjoint covering systems of cardinality n, up to equivalence under shift.

Original entry on oeis.org

1, 1, 2, 4, 10, 26, 75, 226, 718, 2368, 8083, 28367
Offset: 1

Views

Author

Jeffrey Shallit, Nov 06 2017

Keywords

Comments

A disjoint covering system is a system of n congruences x == a_i (mod m_i) such that every integer is a solution to exactly one of the congruences. This sequence counts them up to "shift"; that is, two systems are the same if we can turn one into another by subtracting a constant from x.

Examples

			For n = 3 there are three disjoint covering systems:
(a) x == 0 (mod 3), x == 1 (mod 3), x == 2 (mod 3)
(b) x == 0 (mod 2), x == 1 (mod 4), x == 3 (mod 4)
(c) x == 1 (mod 2), x == 0 (mod 4), x == 2 (mod 4)
but (b) and (c) are equivalent under shift.