OFFSET
1,2
LINKS
Alois P. Heinz, Rows n = 1..2047, flattened
EXAMPLE
The multiplicative partitions of n=8 are {[8], [4,2], [2,2,2]}, encodings give {prime(8), prime(4)*prime(2), prime(2)^3} = {19, 7*3, 3^3} => row 8 = [19, 21, 27].
For n=1 the empty partition [] gives the empty product 1.
Triangle T(n,k) begins:
1 ;
3 ;
5 ;
7, 9 ;
11 ;
13, 15 ;
17 ;
19, 21, 27 ;
23, 25 ;
29, 33 ;
31 ;
35, 37, 39, 45 ;
41 ;
43, 51 ;
47, 55 ;
49, 53, 57, 63, 81 ;
59 ;
...
MAPLE
b:= proc(n) option remember; `if`(n=1, {1}, {seq(map(x-> x*
ithprime(d), b(n/d))[], d=numtheory[divisors](n) minus {1})})
end:
T:= n-> sort([b(n)[]])[]:
seq(T(n), n=1..28);
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Alois P. Heinz, Nov 18 2024
STATUS
approved