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!)
A244517 Number of partitions of n where the minimal multiplicity of any part is 4. 2

%I #9 May 01 2018 02:59:45

%S 0,0,0,1,0,0,0,1,0,0,0,2,1,2,1,4,2,3,3,6,3,6,4,10,6,10,7,19,13,17,16,

%T 31,22,34,28,48,39,54,49,76,62,84,79,120,96,133,124,179,162,202,193,

%U 275,249,315,300,412,379,480,467,603,577,711,696,905,850,1035,1038,1307,1258,1509,1511,1864,1834,2185,2171,2673,2636

%N Number of partitions of n where the minimal multiplicity of any part is 4.

%C Column k=4 of A243978.

%H Joerg Arndt and Alois P. Heinz, <a href="/A244517/b244517.txt">Table of n, a(n) for n = 1..1000</a>

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

%p b(n, i-1, k) +add(b(n-i*j, i-1, k), j=max(1, k)..n/i)))

%p end:

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

%p seq(a(n), n=1..100);

%t b[n_, i_, k_] := b[n, i, k] = If[n == 0, 1, If[i < 1, 0, b[n, i - 1, k] + Sum[b[n - i*j, i - 1, k], {j, Max[1, k], n/i}]]];

%t a[n_] := b[n, n, 4] - b[n, n, 5];

%t Array[a, 100] (* _Jean-François Alcover_, May 01 2018, translated from Maple *)

%K nonn

%O 1,12

%A _Joerg Arndt_ and _Alois P. Heinz_, Jun 29 2014

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 28 15:56 EDT 2024. Contains 372916 sequences. (Running on oeis4.)