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!)
A063835 Three times partitioned numbers: the number of ways a number can be partitioned in (not necessarily different) parts and each part again so partitioned a second and a third time. 2

%I #15 Mar 28 2016 04:06:12

%S 1,5,14,51,125,429,1039,3258,8254,23554,58934,168803,412177,1114550,

%T 2795446,7345875,18035424,46875324,114272057,291692396,709742614,

%U 1774402071,4290848175,10672950659,25572179792,62670553073,149978278320

%N Three times partitioned numbers: the number of ways a number can be partitioned in (not necessarily different) parts and each part again so partitioned a second and a third time.

%H Vaclav Kotesovec, <a href="/A063835/b063835.txt">Table of n, a(n) for n = 1..2000</a>

%F G.f.: 1/Product(1-b(n)*x^n, n=1..infinity), where b(n) is sum of number of partitions of parts in all partitions of n; b() is convolution of A047968() and A000041(). - _Vladeta Jovovic_, Nov 22 2005

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

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

%F c = 31506.382471540934704971753670563958673161001663... if mod(n,4) = 0

%F c = 31502.248225846169487427060315658509213347537914... if mod(n,4) = 1

%F c = 31506.175349116205868096360427802563935891182649... if mod(n,4) = 2

%F c = 31502.232274793501377850265964413938565498517297... if mod(n,4) = 3

%F (End)

%t Table[Plus@@((Apply[Plus, #/. i_Integer-> PartitionsP[i], {1}]/. f->Times)& /@ Flatten[Flatten[Outer[f, Sequence@@(Partitions/@#), 1]]&/@Partitions[w]]), {w, 16}]

%t nmax = 40; A047968 = Table[Sum[PartitionsP[d], {d, Divisors[n]}], {n, 1, nmax}]; conv = Table[Sum[A047968[[j]]*PartitionsP[m - j], {j, 1, m}], {m, 1, nmax}]; A063835 = Rest[CoefficientList[Series[Product[1/(1 - conv[[k]]*x^k), {k, 1, nmax}], {x, 0, nmax}], x]] (* _Vaclav Kotesovec_, Mar 27 2016 *)

%Y Cf. A063834.

%K nonn,nice

%O 1,2

%A _Wouter Meeussen_, Aug 21 2001

%E More terms from _Vladeta Jovovic_, Nov 22 2005

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 09:49 EDT 2024. Contains 371967 sequences. (Running on oeis4.)