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!)
A264392 Number of perfect cube parts in all partitions of n. 3
0, 1, 2, 4, 7, 12, 19, 30, 46, 68, 99, 142, 200, 279, 384, 523, 707, 946, 1256, 1656, 2169, 2822, 3652, 4699, 6017, 7666, 9725, 12282, 15452, 19362, 24176, 30080, 37307, 46117, 56843, 69854, 85613, 104640, 127578, 155150, 188249, 227872, 275242, 331738, 399027, 478988 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
a(n) = Sum_{k=0..n} k*A264391(n,k).
LINKS
FORMULA
G.f.: ( Sum_{i>0} x^(h(i))/(1-x^(h(i))) ) / ( Product_{i>0} 1-x^i ), where h(i) = i^3.
EXAMPLE
a(4) = 7 because the partitions of 4 are [4],[3,1'],[2,2],[2,1',1'], and [1',1',1',1'], where the perfect cube parts are marked.
MAPLE
h := proc (i) options operator, arrow: i^3 end proc: g := (sum(x^h(i)/(1-x^h(i)), i = 1 .. 100))/(product(1-x^i, i = 1 .. 100)): hser := series(g, x = 0, 55): seq(coeff(hser, x, n), n = 0 .. 50);
MATHEMATICA
cnt[P_List] := Count[P, p_ /; IntegerQ[p^(1/3)]];
a[n_] := a[n] = cnt /@ IntegerPartitions[n] // Total;
Table[Print[n, " ", a[n]]; a[n], {n, 0, 50}];
(* or: *)
m = 50;
CoefficientList[Sum[x^(i^3)/(1 - x^(i^3)), {i, 1, m^(1/3) // Ceiling}]/ Product[1 - x^i, {i, 1, m}] + O[x]^m, x] (* Jean-François Alcover, Nov 14 2020 *)
CROSSREFS
Cf. A264391.
Sequence in context: A000070 A369579 A008609 * A100823 A102346 A333148
KEYWORD
nonn
AUTHOR
Emeric Deutsch, Nov 13 2015
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 18 15:48 EDT 2024. Contains 371780 sequences. (Running on oeis4.)