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-1 of 1 results.

A238969 Degree of divisor lattice in divisor lattice in canonical order.

Original entry on oeis.org

0, 1, 2, 2, 2, 3, 3, 2, 3, 4, 4, 4, 2, 3, 4, 4, 5, 5, 5, 2, 3, 4, 4, 4, 5, 5, 6, 6, 6, 6, 2, 3, 4, 4, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 7, 2, 3, 4, 4, 4, 5, 5, 4, 5, 6, 6, 6, 6, 6, 7, 7, 7, 8, 8, 8, 8, 8, 2, 3, 4, 4, 4, 5, 5, 4, 5, 6, 6, 6, 5, 6, 6, 7, 7, 7, 6, 7, 7, 8, 8, 8, 8, 9, 9, 9, 9, 9
Offset: 0

Views

Author

Sung-Hyuk Cha, Mar 07 2014

Keywords

Examples

			Triangle T(n,k) begins:
  0;
  1;
  2, 2;
  2, 3, 3;
  2, 3, 4, 4, 4;
  2, 3, 4, 4, 5, 5, 5;
  2, 3, 4, 4, 4, 5, 5, 6, 6, 6, 6;
  ...
		

Crossrefs

Cf. A238956 in canonical order.

Programs

  • PARI
    C(sig)={sum(i=1, #sig, if(sig[i]>1, 2, 1))}
    Row(n)={apply(C, vecsort([Vecrev(p) | p<-partitions(n)], , 4))}
    { for(n=0, 8, print(Row(n))) } \\ Andrew Howroyd, Mar 26 2020

Formula

T(n,k) = A238949(A063008(n,k)). - Andrew Howroyd, Mar 26 2020

Extensions

Offset changed and terms a(50) and beyond from Andrew Howroyd, Mar 26 2020
Showing 1-1 of 1 results.