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!)
A304329 Expansion of Product_{k>0} (Sum_{m>=0} x^(k*m^3)). 3

%I #27 Mar 08 2021 08:39:22

%S 1,1,1,2,2,3,4,5,7,8,11,13,16,20,24,30,36,44,51,62,74,88,103,122,145,

%T 169,197,231,268,312,362,419,485,557,642,737,846,967,1108,1262,1442,

%U 1640,1865,2118,2398,2719,3074,3474,3922,4421,4980,5604,6294,7070,7929

%N Expansion of Product_{k>0} (Sum_{m>=0} x^(k*m^3)).

%C Also the number of partitions of n in which each part occurs a cube number (>=0) of times.

%H Alois P. Heinz, <a href="/A304329/b304329.txt">Table of n, a(n) for n = 0..10000</a> (first 1001 terms from Seiichi Manyama)

%e n | Partitions of n in which each part occurs a cube number (>=0) of times

%e --+-----------------------------------------------------------------------

%e 1 | 1;

%e 2 | 2;

%e 3 | 3 = 2+1;

%e 4 | 4 = 3+1;

%e 5 | 5 = 4+1 = 3+2;

%e 6 | 6 = 5+1 = 4+2 = 3+2+1;

%e 7 | 7 = 6+1 = 5+2 = 4+3 = 4+2+1;

%e 8 | 8 = 7+1 = 6+2 = 5+3 = 5+2+1 = 4+3+1 = 1+1+1+1+1+1+1+1;

%p b:= proc(n, i) option remember; local j; if n=0 then 1

%p elif i<1 then 0 else b(n, i-1); for j while

%p i*j^3<=n do %+b(n-i*j^3, i-1) od; % fi

%p end:

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

%p seq(a(n), n=0..60); # _Alois P. Heinz_, May 11 2018

%t terms = 100;

%t Product[Sum[x^(k*m^3), {m, 0, Ceiling[terms^(1/3)]}], {k, 1, terms}] + O[x]^terms // CoefficientList[#, x]& (* _Jean-François Alcover_, Mar 08 2021 *)

%Y Cf. A000041, A300446.

%K nonn

%O 0,4

%A _Seiichi Manyama_, May 11 2018

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 18 18:42 EDT 2024. Contains 375273 sequences. (Running on oeis4.)