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!)
A092309 Sum of smallest parts (counted with multiplicity) of all partitions of n. 13

%I #19 Jul 06 2019 04:42:57

%S 1,4,7,15,19,39,46,80,106,160,201,318,390,554,729,998,1262,1727,2168,

%T 2894,3670,4749,5963,7737,9635,12232,15257,19206,23727,29723,36509,

%U 45296,55512,68292,83298,102079,123805,150697,182254,220790,265766

%N Sum of smallest parts (counted with multiplicity) of all partitions of n.

%H Alois P. Heinz, <a href="/A092309/b092309.txt">Table of n, a(n) for n = 1..9000</a>

%F G.f.: Sum(n*x^n/(1-x^n)*Product(1/(1-x^k), k = n .. infinity), n = 1 .. infinity).

%F a(n) ~ sqrt(2) * exp(Pi*sqrt(2*n/3)) / (4*Pi*sqrt(n)). - _Vaclav Kotesovec_, Jul 06 2019

%e Partitions of 4 are: [1,1,1,1], [1,1,2], [2,2], [1,3], [4]; thus a(4)=4*1+2*1+2*2+1*1+1*4=15.

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

%p +`if`(i>1, add(b(n-i*j, i-1), j=0..(n-1)/i), 0)

%p end:

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

%p seq(a(n), n=1..50); # _Alois P. Heinz_, Feb 04 2016

%t ss[n_]:=Module[{m=Min[n]},Select[n,#==m&]]; Table[Total[Flatten[ss/@ IntegerPartitions[n]]],{n,50}] (* _Harvey P. Dale_, Dec 16 2013 *)

%t b[n_, i_] := b[n, i] = If[Mod[n, i] == 0, n, 0] + If[i > 1, Sum[b[n - i*j, i - 1], {j, 0, (n - 1)/i}], 0]; a[n_] := b[n, n]; Table[a[n], {n, 1, 50}] (* _Jean-François Alcover_, Aug 29 2016, after _Alois P. Heinz_ *)

%Y Cf. A092314, A092322, A092269, A092321, A092313, A092310, A092311, A092268.

%Y Cf. A046746.

%K easy,nonn

%O 1,2

%A _Vladeta Jovovic_, Feb 16 2004

%E More terms from Pab Ter (pabrlos(AT)yahoo.com), May 25 2004

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 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)