[go: up one dir, main page]

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!)
A063834 Twice partitioned numbers: the number of ways a number can be partitioned into not necessarily different parts and each part is again so partitioned. 232

%I #58 Oct 27 2023 18:26:39

%S 1,1,3,6,15,28,66,122,266,503,1027,1913,3874,7099,13799,25501,48508,

%T 88295,165942,299649,554545,997281,1817984,3245430,5875438,10410768,

%U 18635587,32885735,58399350,102381103,180634057,314957425,551857780,958031826,1667918758

%N Twice partitioned numbers: the number of ways a number can be partitioned into not necessarily different parts and each part is again so partitioned.

%C These are different from plane partitions.

%C For ordered partitions of partitions see A055887 which may be computed from A036036 and A048996. - _Alford Arnold_, May 19 2006

%C Twice partitioned numbers correspond to triangles (or compositions) in the multiorder of integer partitions. - _Gus Wiseman_, Oct 28 2015

%H Alois P. Heinz, <a href="/A063834/b063834.txt">Table of n, a(n) for n = 0..5000</a> (terms n=1..500 from T. D. Noe)

%H Vaclav Kotesovec, <a href="/A063834/a063834.jpg">Screenshot - A closed form formula for the constant c</a>

%H Gus Wiseman, <a href="https://docs.google.com/document/d/1m0s6DGTBkDW9gvMuFmJHvy6oLGRAbQ7okAZcOPZawp0/pub">Comcategories and Multiorders</a> <a href="http://www.nafindix.com/math/academic/ComcategoriesandMultiordersv7.pdf">(pdf version)</a>

%H Gus Wiseman, <a href="http://www.nafindix.com/math/academic/catptn02.pdf">On the Categorical Structure of Weakly Ordered Sequences of Integer Partitions</a>

%H Gus Wiseman, <a href="/A063834/a063834.txt">Sequences enumerating triangles of integer partitions</a>

%F G.f.: 1/Product_{k>0} (1-A000041(k)*x^k). n*a(n) = Sum_{k=1..n} b(k)*a(n-k), a(0) = 1, where b(k) = Sum_{d|k} d*A000041(d)^(k/d) = 1, 5, 10, 29, 36, 110, 106, ... . - _Vladeta Jovovic_, Jun 19 2003

%F From _Vaclav Kotesovec_, Mar 27 2016: (Start)

%F a(n) ~ c * 5^(n/4), where

%F c = 96146522937.7161898848278970039269600938032826... if n mod 4 = 0

%F c = 96146521894.9433858914667933636782092683849082... if n mod 4 = 1

%F c = 96146522937.2138934755566928890704687838407524... if n mod 4 = 2

%F c = 96146521894.8218716328341714149619262713426755... if n mod 4 = 3

%F (End)

%e G.f. = 1 + x + 3*x^2 + 6*x^3 + 15*x^4 + 28*x^5 + 66*x^6 + 122*x^7 + 266*x^8 + ...

%e If n=6, a possible first partitioning is (3+3), resulting in the following second partitionings: ((3),(3)), ((3),(2+1)), ((3),(1+1+1)), ((2+1),(3)), ((2+1),(2+1)), ((2+1),(1+1+1)), ((1+1+1),(3)), ((1+1+1),(2+1)), ((1+1+1),(1+1+1)).

%p with(combinat):

%p b:= proc(n, i) option remember; `if`(n=0 or i=1, 1,

%p b(n, i-1)+`if`(i>n, 0, numbpart(i)*b(n-i, i)))

%p end:

%p a:= n-> b(n$2):

%p seq(a(n), n=0..50); # _Alois P. Heinz_, Nov 26 2015

%t Table[Plus @@ Apply[Times, IntegerPartitions[i] /. i_Integer :> PartitionsP[i], 2], {i, 36}]

%t (* second program: *)

%t b[n_, i_] := b[n, i] = If[n==0 || i==1, 1, b[n, i-1] + If[i > n, 0, PartitionsP[i]*b[n-i, i]]]; a[n_] := b[n, n]; Table[a[n], {n, 0, 50}] (* _Jean-François Alcover_, Jan 20 2016, after _Alois P. Heinz_ *)

%o (PARI) {a(n) = if( n<0, 0, polcoeff( 1 / prod(k=1, n, 1 - numbpart(k) * x^k, 1 + x * O(x^n)), n))}; /* _Michael Somos_, Dec 19 2016 */

%Y Cf. A063835, A196545.

%Y Cf. A036036, A048996, A055887.

%Y Cf. A006906, A270995.

%Y Cf. A007425, A047966, A047968, A271619, A279375, A279784-A279791.

%Y Row sums of A321449.

%Y Column k=2 of A323718.

%Y Cf. A327769.

%K nonn,nice

%O 0,3

%A _Wouter Meeussen_, Aug 21 2001

%E a(0)=1 prepended by _Alois P. Heinz_, Nov 26 2015

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 August 29 11:15 EDT 2024. Contains 375512 sequences. (Running on oeis4.)