The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A096826 Number of maximal-sized antichains in divisor lattice D(n). 3
1, 2, 2, 3, 2, 1, 2, 4, 3, 1, 2, 3, 2, 1, 1, 5, 2, 3, 2, 3, 1, 1, 2, 6, 3, 1, 4, 3, 2, 2, 2, 6, 1, 1, 1, 1, 2, 1, 1, 6, 2, 2, 2, 3, 3, 1, 2, 10, 3, 3, 1, 3, 2, 6, 1, 6, 1, 1, 2, 1, 2, 1, 3, 7, 1, 2, 2, 3, 1, 2, 2, 4, 2, 1, 3, 3, 1, 2, 2, 10, 5, 1, 2, 1, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The divisor lattice D(n) is the lattice of the divisors of the natural number n.
LINKS
EXAMPLE
From Gus Wiseman, Aug 24 2018: (Start)
The a(120) = 6 antichains:
{8,12,20,30}
{8,12,15,20}
{8,10,12,15}
{6,8,15,20}
{6,8,10,15}
{4,6,10,15}
(End)
PROG
(Sage)
def A096826(n) :
if n==1 : return 1
R.<t> = QQ[]; mults = [x[1] for x in factor(n)]
maxsize = prod((t^(m+1)-1)//(t-1) for m in mults)[sum(mults)//2]
dlat = LatticePoset((divisors(n), attrcall("divides")))
count = 0
for ac in dlat.antichains_iterator() :
if len(ac) == maxsize : count += 1
return count
# Eric M. Schmidt, May 13 2013
CROSSREFS
Sequence in context: A030362 A007906 A044050 * A346010 A116199 A369031
KEYWORD
nonn
AUTHOR
Yuval Dekel (dekelyuval(AT)hotmail.com), Aug 17 2004
EXTENSIONS
More terms from Eric M. Schmidt, May 13 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 21 01:24 EDT 2024. Contains 372720 sequences. (Running on oeis4.)