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!)
A265146 Triangle T(n,k) in which n-th row lists the parts i_1<i_2<...<i_m of the unique strict partition with encoding n = Product_{j=1..m} prime(i_j-j+1); n>=1, 1<=k<=A001222(n). 6
1, 2, 1, 2, 3, 1, 3, 4, 1, 2, 3, 2, 3, 1, 4, 5, 1, 2, 4, 6, 1, 5, 2, 4, 1, 2, 3, 4, 7, 1, 3, 4, 8, 1, 2, 5, 2, 5, 1, 6, 9, 1, 2, 3, 5, 3, 4, 1, 7, 2, 3, 4, 1, 2, 6, 10, 1, 3, 5, 11, 1, 2, 3, 4, 5, 2, 6, 1, 8, 3, 5, 1, 2, 4, 5, 12, 1, 9, 2, 7, 1, 2, 3, 6, 13, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A strict partition is a partition into distinct parts.
Row n=1 contains the parts of the empty partition, so it is empty.
LINKS
FORMULA
T(prime(n),1) = n.
EXAMPLE
n = 12 = 2*2*3 = prime(1)*prime(1)*prime(2) encodes strict partition [1,2,4].
Triangle T(n,k) begins:
01 : ;
02 : 1;
03 : 2;
04 : 1, 2;
05 : 3;
06 : 1, 3;
07 : 4;
08 : 1, 2, 3;
09 : 2, 3;
10 : 1, 4;
11 : 5;
12 : 1, 2, 4;
13 : 6;
14 : 1, 5;
15 : 2, 4;
16 : 1, 2, 3, 4;
MAPLE
T:= n-> ((l-> seq(l[j]+j-1, j=1..nops(l)))(sort([seq(
numtheory[pi](i[1])$i[2], i=ifactors(n)[2])]))):
seq(T(n), n=1..100);
MATHEMATICA
T[n_] := Function[l, Table[l[[j]]+j-1, {j, 1, Length[l]}]][Sort[ Flatten[ Table[ Array[ PrimePi[i[[1]]]&, i[[2]]], {i, FactorInteger[n]}]]]];
Table[T[n], {n, 1, 100}] // Flatten // Rest (* Jean-François Alcover, Mar 23 2017, translated from Maple *)
CROSSREFS
Column k=1 gives A055396 (for n>1).
Last terms of rows give A252464 (for n>1).
Row sums give A266475.
Sequence in context: A036995 A225597 A116908 * A358136 A325537 A072851
KEYWORD
nonn,tabf
AUTHOR
Alois P. Heinz, Dec 02 2015
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 4 17:51 EDT 2024. Contains 372257 sequences. (Running on oeis4.)