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!)
A322786 Irregular triangle read by rows where if d|n then T(n,d) is the number of multiset partitions of a multiset with d copies of each integer from 1 to n/d. 3
1, 2, 2, 5, 3, 15, 9, 5, 52, 7, 203, 66, 31, 11, 877, 15, 4140, 712, 109, 22, 21147, 686, 30, 115975, 10457, 339, 42, 678570, 56, 4213597, 198091, 27036, 6721, 1043, 77, 27644437, 101, 190899322, 4659138, 2998, 135, 1382958545, 1688360, 58616, 176 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..207 (first 50 rows)
FORMULA
T(n,d) = A001055(A002110(n/d)^d).
T(n,d) = A219727(d, n/d). - Andrew Howroyd, Jan 11 2020
EXAMPLE
Triangle begins:
1
2 2
5 3
15 9 5
52 7
203 66 31 11
877 15
4140 712 109 22
21147 686 30
115975 10457 339 42
678570 56
4213597 198091 27036 6721 1043 77
For example, row 4 counts the following multiset partitions.
{{1,2,3,4}} {{1,1,2,2}} {{1,1,1,1}}
{{1},{2,3,4}} {{1},{1,2,2}} {{1},{1,1,1}}
{{1,2},{3,4}} {{1,1},{2,2}} {{1,1},{1,1}}
{{1,3},{2,4}} {{1,2},{1,2}} {{1},{1},{1,1}}
{{1,4},{2,3}} {{2},{1,1,2}} {{1},{1},{1},{1}}
{{2},{1,3,4}} {{1},{1},{2,2}}
{{3},{1,2,4}} {{1},{2},{1,2}}
{{4},{1,2,3}} {{2},{2},{1,1}}
{{1},{2},{3,4}} {{1},{1},{2},{2}}
{{1},{3},{2,4}}
{{1},{4},{2,3}}
{{2},{3},{1,4}}
{{2},{4},{1,3}}
{{3},{4},{1,2}}
{{1},{2},{3},{4}}
MATHEMATICA
u[n_, k_]:=u[n, k]=If[n==1, 1, Sum[u[n/d, d], {d, Select[Rest[Divisors[n]], #<=k&]}]];
Table[Table[u[Array[Prime, n/d, 1, Times]^d, Array[Prime, n/d, 1, Times]^d], {d, Divisors[n]}], {n, 10}]
PROG
(PARI) \\ needs T(n, k) from A219727.
Row(n)={[T(d, n/d) | d<-divisors(n)]}
{ for(n=1, 12, print(Row(n))) } \\ Andrew Howroyd, Jan 11 2020
CROSSREFS
Row sums are A322784. First column is A000110.
Sequence in context: A147524 A113177 A344507 * A184243 A356891 A135281
KEYWORD
nonn,tabf
AUTHOR
Gus Wiseman, Dec 26 2018
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 April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)