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!)
A306187 Number of n-times partitions of n. 5
1, 1, 3, 10, 65, 371, 3780, 33552, 472971, 5736082, 97047819, 1547576394, 32992294296, 626527881617, 15202246707840, 352290010708120, 9970739854456849, 262225912049078193, 8309425491887714632, 250946978120046026219, 8898019305511325083149 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
A k-times partition of n for k > 1 is a sequence of (k-1)-times partitions, one of each part in an integer partition of n. A 1-times partition of n is just an integer partition of n. The only 0-times partition of n is the number n itself. - Gus Wiseman, Jan 27 2019
LINKS
FORMULA
a(n) = A323718(n,n).
EXAMPLE
From Gus Wiseman, Jan 27 2019: (Start)
The a(1) = 1 through a(3) = 10 partitions:
(1) ((2)) (((3)))
((11)) (((21)))
((1)(1)) (((111)))
(((2)(1)))
(((11)(1)))
(((2))((1)))
(((1)(1)(1)))
(((11))((1)))
(((1)(1))((1)))
(((1))((1))((1)))
(End)
MAPLE
b:= proc(n, i, k) option remember; `if`(n=0 or k=0 or i=1,
1, b(n, i-1, k)+b(i$2, k-1)*b(n-i, min(n-i, i), k))
end:
a:= n-> b(n$3):
seq(a(n), n=0..25);
MATHEMATICA
ptnlevct[n_, k_]:=Switch[k, 0, 1, 1, PartitionsP[n], _, SeriesCoefficient[Product[1/(1-ptnlevct[m, k-1]*x^m), {m, n}], {x, 0, n}]];
Table[ptnlevct[n, n], {n, 0, 8}] (* Gus Wiseman, Jan 27 2019 *)
CROSSREFS
Main diagonal of A323718.
Sequence in context: A167939 A352766 A206724 * A009400 A217388 A004102
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jan 27 2019
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 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)