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.

Showing 1-3 of 3 results.

A122977 Number of sublattices of the divisor lattice of divisors of n that include n.

Original entry on oeis.org

1, 2, 2, 4, 2, 7, 2, 8, 4, 7, 2, 21, 2, 7, 7, 16, 2, 21, 2, 21, 7, 7, 2, 58, 4, 7, 8, 21, 2, 45, 2, 32, 7, 7, 7, 84, 2, 7, 7, 58, 2, 45, 2, 21, 21, 7, 2, 152, 4, 21, 7, 21, 2, 58, 7, 58, 7, 7, 2, 200, 2, 7, 21, 64, 7, 45, 2, 21, 7, 45, 2, 293, 2, 7, 21, 21, 7, 45, 2, 152, 16, 7, 2, 200, 7, 7
Offset: 1

Views

Author

Keywords

Comments

A divisor lattice is closed under GCD and LCM. First differences of A074986. Depends only on the prime signature of n.

Examples

			The a(6) = 7 sublattices of {1,2,3,6} that include 6 are: {6}, {1,6}, {2,6}, {3,6}, {1,2,6}, {1,3,6}, {1,2,3,6}.
		

Crossrefs

Programs

  • Mathematica
    okQ[dd_List] := AllTrue[Subsets[dd, {2}], MemberQ[dd, GCD @@ #] && MemberQ[dd, LCM @@ #]&];
    a[n_] := Select[Rest @ Subsets[Divisors[n]], Last[#] == n && okQ[#]&] // Length;
    Table[a[n], {n, 1, 100}] (* Jean-François Alcover, Aug 18 2022 *)

Formula

a(A002110(n)) = A326878(n). - Andrew Howroyd, Apr 17 2020

A122980 Number of distributive sublattices of the lattice of k-tuples less than the n-th partition (in Mathematica order), that include the maximum element.

Original entry on oeis.org

2, 4, 7, 8, 21, 45, 16, 58, 84, 200, 500, 32, 152, 293, 748, 1184, 3220
Offset: 1

Views

Author

Keywords

Comments

After a(18) - for partition [1^5] - the sequence continues ?, 64, 384, 938, 2520, 1238, 5591, ?, ?, ?, ?, ?, 128.

Examples

			For a(5), partition [2,1], the lattice consists of the 6 pairs (i,j) where 0<=i<=2 and 0<=j<=1, with (i,j) <= (i',j') iff i<=i' and j<=j'. {(2,1), (2,0), (0,1), (0,0)} is one distributive sublattice.
		

Crossrefs

A122981 Number of distributive sublattices of the lattice of k-tuples less than the n-th partition (in Abramowitz and Stegun order).

Original entry on oeis.org

3, 7, 12, 15, 37, 73, 31, 103, 146, 319, 731, 63, 271, 505, 1191, 1833, 4618
Offset: 1

Views

Author

Keywords

Comments

After a(18) - for partition [1^5] - the sequence continues ?, 127, 687, 1611, 2102, 4031, 8589, ?, ?, ?, ?, ?, 255.

Examples

			For a(5), partition [2,1], the lattice consists of the 6 pairs (i,j) where 0<=i<=2 and 0<=j<=1, with (i,j) <= (i',j') iff i<=i' and j<=j'. {(2,1), (2,0), (0,1), (0,0)} is one distributive sublattice.
		

Crossrefs

Showing 1-3 of 3 results.