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!)
A222044 Sum of smallest parts of all partitions of n into an odd number of parts. 8
0, 1, 2, 4, 5, 8, 11, 15, 19, 28, 35, 47, 61, 80, 102, 136, 168, 218, 276, 350, 437, 556, 686, 860, 1063, 1321, 1620, 2005, 2443, 2998, 3649, 4445, 5377, 6531, 7863, 9496, 11398, 13694, 16373, 19603, 23347, 27834, 33058, 39259, 46467, 55020, 64914, 76599 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
a(n) + A222045(n) = A046746(n).
a(n) - A222045(n) = A222046(n).
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..10000 (terms 0..1000 from Alois P. Heinz)
FORMULA
a(n) ~ exp(Pi*sqrt(2*n/3)) / (8*sqrt(3)*n). - Vaclav Kotesovec, Jul 06 2019
EXAMPLE
a(6) = 11: partitions of 6 into an odd number of parts are [2,1,1,1,1], [2,2,2], [3,2,1], [4,1,1], [6], sum of smallest parts is 1+2+1+1+6 = 11.
MAPLE
b:= proc(n, i) option remember;
[`if`(n=i, n, 0), 0]+`if`(i<1, [0, 0], b(n, i-1)+
`if`(n<i, [0, 0], (l-> [l[2], l[1]])(b(n-i, i))))
end:
a:= n-> b(n, n)[1]:
seq(a(n), n=0..60);
MATHEMATICA
b[n_, i_] := b[n, i] = {If[n==i, n, 0], 0} + If[i<1, {0, 0}, b[n, i-1] + If[n<i, {0, 0}, Reverse[b[n-i, i]]]]; a[n_] := b[n, n][[1]]; Table[a[n], {n, 0, 60}] (* Jean-François Alcover, Feb 03 2017, translated from Maple *)
Table[Total[Min/@Select[IntegerPartitions[n], OddQ[Length[#]]&]], {n, 0, 50}] (* Harvey P. Dale, Jul 05 2019 *)
CROSSREFS
Sequence in context: A307518 A060773 A330440 * A288937 A327063 A324926
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Feb 06 2013
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 May 21 04:19 EDT 2024. Contains 372720 sequences. (Running on oeis4.)