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!)
A301595 Number of thrice-partitions of n. 5
1, 1, 4, 10, 34, 80, 254, 604, 1785, 4370, 11986, 29286, 80355, 193137, 505952, 1239348, 3181970, 7686199, 19520906, 46931241, 117334784, 282021070, 693721166, 1659075192, 4063164983, 9651686516, 23347635094, 55405326513, 133021397071, 313842472333, 749299686508 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
A thrice-partition of n is a choice of a twice-partition of each part in a partition of n. Thrice-partitions correspond to intervals in the lattice form of the multiorder of integer partitions.
LINKS
FORMULA
O.g.f.: Product_{n > 0} 1/(1 - A063834(n) x^n).
EXAMPLE
The a(3) = 10 thrice-partitions:
((3)), ((21)), ((111)), ((2)(1)), ((11)(1)), ((1)(1)(1)),
((2))((1)), ((11))((1)), ((1)(1))((1)),
((1))((1))((1)).
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$2, 3):
seq(a(n), n=0..35); # Alois P. Heinz, Jan 25 2019
MATHEMATICA
twie[n_]:=Sum[Times@@PartitionsP/@ptn, {ptn, IntegerPartitions[n]}];
thrie[n_]:=Sum[Times@@twie/@ptn, {ptn, IntegerPartitions[n]}];
Array[thrie, 30]
(* Second program: *)
b[n_, i_, k_] := b[n, i, k] = If[n == 0 || k == 0 || i == 1,
1, b[n, i - 1, k] + b[i, i, k - 1]*b[n - i, Min[n - i, i], k]];
a[n_] := b[n, n, 3];
a /@ Range[0, 35] (* Jean-François Alcover, May 19 2021, after Alois P. Heinz *)
CROSSREFS
Column k=3 of A323718.
Sequence in context: A261577 A224217 A066454 * A022445 A091003 A140725
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 24 2018
EXTENSIONS
a(0)=1 prepended by Alois P. Heinz, Jan 25 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 June 1 10:29 EDT 2024. Contains 373016 sequences. (Running on oeis4.)