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

A122978 Number of sublattices of the division lattice of divisors of n.

Original entry on oeis.org

1, 3, 3, 7, 3, 12, 3, 15, 7, 12, 3, 37, 3, 12, 12, 31, 3, 37, 3, 37, 12, 12, 3, 103, 7, 12, 15, 37, 3, 73, 3, 63, 12, 12, 12, 146, 3, 12, 12, 103, 3, 73, 3, 37, 37, 12, 3, 271, 7, 37, 12, 37, 3, 103, 12, 103, 12, 12, 3, 319, 3, 12, 37, 127, 12, 73, 3, 37, 12, 73, 3, 505, 3, 12, 37, 37
Offset: 1

Views

Author

Keywords

Comments

A division lattice is closed under GCD and LCM. Depends only on the prime signature of n.

Crossrefs

A074986 Number of nonempty subsets of {1,2,3,...,n} that are closed under both GCD and LCM.

Original entry on oeis.org

1, 3, 5, 9, 11, 18, 20, 28, 32, 39, 41, 62, 64, 71, 78, 94, 96, 117, 119, 140, 147, 154, 156, 214, 218, 225, 233, 254, 256, 301, 303, 335, 342, 349, 356, 440, 442, 449, 456, 514, 516, 561, 563, 584, 605, 612, 614, 766, 770, 791, 798, 819, 821, 879, 886, 944, 951
Offset: 1

Views

Author

John W. Layman, Oct 02 2002

Keywords

Comments

I.e. number of division lattices with values from 1 to n. - Franklin T. Adams-Watters, Sep 21 2006

Crossrefs

Extensions

More terms from Franklin T. Adams-Watters, Sep 21 2006
Showing 1-3 of 3 results.