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!)
A238966 The number of distinct primes in divisor lattice in canonical order. 13

%I #32 Sep 22 2023 08:43:53

%S 0,1,1,2,1,2,3,1,2,2,3,4,1,2,2,3,3,4,5,1,2,2,3,2,3,4,3,4,5,6,1,2,2,3,

%T 2,3,4,3,3,4,5,4,5,6,7,1,2,2,3,2,3,4,2,3,3,4,5,3,4,4,5,6,4,5,6,7,8,1,

%U 2,2,3,2,3,4,2,3,3,4,5,3,3,4,4,5,6,3,4,5,4,5,6,7,5,6,7,8,9

%N The number of distinct primes in divisor lattice in canonical order.

%C After a(0) = 0, this appears to be the same as A128628. - _Gus Wiseman_, May 24 2020

%C Also the number of parts in the n-th integer partition in graded reverse-lexicographic order (A080577). - _Gus Wiseman_, May 24 2020

%H Andrew Howroyd, <a href="/A238966/b238966.txt">Table of n, a(n) for n = 0..2713</a> (rows 0..20)

%H S.-H. Cha, E. G. DuCasse, and L. V. Quintas, <a href="http://arxiv.org/abs/1405.5283">Graph Invariants Based on the Divides Relation and Ordered by Prime Signatures</a>, arXiv:1405.5283 [math.NT], 2014.

%H OEIS Wiki, <a href="http://oeis.org/wiki/Orderings of partitions">Orderings of partitions</a>

%H Wikiversity, <a href="https://en.wikiversity.org/wiki/Lexicographic_and_colexicographic_order">Lexicographic and colexicographic order</a>

%F T(n,k) = A001221(A063008(n,k)). - _Andrew Howroyd_, Mar 25 2020

%F a(n) = A001222(A129129(n)). - _Gus Wiseman_, May 24 2020

%e Triangle T(n,k) begins:

%e 0;

%e 1;

%e 1, 2;

%e 1, 2, 3;

%e 1, 2, 2, 3, 4;

%e 1, 2, 2, 3, 3, 4, 5;

%e 1, 2, 2, 3, 2, 3, 4, 3, 4, 5, 6;

%e ...

%p o:= proc(n) option remember; nops(ifactors(n)[2]) end:

%p b:= (n, i)-> `if`(n=0 or i=1, [[1$n]], [map(x->

%p [i, x[]], b(n-i, min(n-i, i)))[], b(n, i-1)[]]):

%p T:= n-> map(x-> o(mul(ithprime(i)^x[i], i=1..nops(x))), b(n$2))[]:

%p seq(T(n), n=0..9); # _Alois P. Heinz_, Mar 26 2020

%t revlexsort[f_,c_]:=OrderedQ[PadRight[{c,f}]];

%t Table[Length/@Sort[IntegerPartitions[n],revlexsort],{n,0,8}] (* _Gus Wiseman_, May 24 2020 *)

%t b[n_, i_] := b[n, i] = If[n == 0 || i == 1, {Table[1, {n}]}, Join[ Prepend[#, i]& /@ b[n - i, Min[n - i, i]], b[n, i - 1]]];

%t P[n_] := P[n] = Product[Prime[i]^#[[i]], {i, 1, Length[#]}]& /@ b[n, n];

%t T[n_, k_] := PrimeNu[P[n][[k + 1]]];

%t Table[T[n, k], {n, 0, 9}, {k, 0, Length[P[n]] - 1}] // Flatten (* _Jean-François Alcover_, Jan 03 2022, after _Alois P. Heinz_ in A063008 *)

%o (PARI)

%o Row(n)={apply(s->#s, vecsort([Vecrev(p) | p<-partitions(n)], , 4))}

%o { for(n=0, 8, print(Row(n))) } \\ _Andrew Howroyd_, Mar 25 2020

%Y Row sums are A006128.

%Y Cf. A036043 in canonical order.

%Y Cf. A001221, A063008.

%Y Row lengths are A000041.

%Y The generalization to compositions is A000120.

%Y The sum of the partition is A036042.

%Y The lexicographic version (sum/lex) is A049085.

%Y Partition lengths of A080577.

%Y The partition has A115623 distinct elements.

%Y The Heinz number of the partition is A129129.

%Y The colexicographic version (sum/colex) is A193173.

%Y The maximum of the partition is A331581.

%Y Partitions in lexicographic order (sum/lex) are A193073.

%Y Partitions in colexicographic order (sum/colex) are A211992.

%Y Cf. A026792, A036036, A080576, A103921, A112798, A182715, A333486, A334302, A334435, A334436, A334442.

%K nonn,tabf

%O 0,4

%A _Sung-Hyuk Cha_, Mar 07 2014

%E Offset changed and terms a(50) and beyond from _Andrew Howroyd_, Mar 25 2020

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 15 04:25 EDT 2024. Contains 372536 sequences. (Running on oeis4.)