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!)
A323433 Number of ways to split an integer partition of n into consecutive subsequences of equal length. 19

%I #27 May 12 2023 18:29:13

%S 1,1,3,5,10,14,25,34,54,74,109,146,211,276,381,501,675,871,1156,1477,

%T 1926,2447,3142,3957,5038,6291,7918,9839,12277,15148,18773,23027,

%U 28333,34587,42284,51357,62466,75503,91344,109971,132421,158755,190365,227354,271511

%N Number of ways to split an integer partition of n into consecutive subsequences of equal length.

%H Alois P. Heinz, <a href="/A323433/b323433.txt">Table of n, a(n) for n = 0..5000</a>

%F a(n) = Sum_y A000005(k), where the sum is over all integer partitions of n and k is the number of parts.

%F From _Seiichi Manyama_, Jan 21 2022: (Start)

%F G.f.: 1 + Sum_{k>=1} A000005(k) * x^k/Product_{j=1..k} (1-x^j).

%F G.f.: 1 + Sum_{i>=1} Sum_{j>=1} x^(i*j)/Product_{k=1..i*j} (1-x^k). (End)

%F a(n) = Sum_{i=1..n} Sum_{j=1..n} A008284(n,i*j). - _Ridouane Oudra_, Apr 13 2023

%e The a(5) = 14 split partitions:

%e [5] [4 1] [3 2] [3 1 1] [2 2 1] [2 1 1 1] [1 1 1 1 1]

%e .

%e [4] [3] [2 1]

%e [1] [2] [1 1]

%e .

%e [3] [2]

%e [1] [2]

%e [1] [1]

%e .

%e [2]

%e [1]

%e [1]

%e [1]

%e .

%e [1]

%e [1]

%e [1]

%e [1]

%e [1]

%p b:= proc(n, i, t) option remember; `if`(n=0 or i=1, numtheory

%p [tau](t+n), b(n, i-1, t)+b(n-i, min(n-i, i), t+1))

%p end:

%p a:= n-> `if`(n=0, 1, b(n$2, 0)):

%p seq(a(n), n=0..50); # _Alois P. Heinz_, Jan 15 2019

%t Table[Sum[Length[Divisors[Length[ptn]]],{ptn,IntegerPartitions[n]}],{n,30}]

%t (* Second program: *)

%t b[n_, i_, t_] := b[n, i, t] = If[n == 0 || i == 1,

%t DivisorSigma[0, t+n], b[n, i-1, t] + b[n-i, Min[n-i, i], t+1]];

%t a[n_] := If[n == 0, 1, b[n, n, 0]];

%t a /@ Range[0, 50] (* _Jean-François Alcover_, May 10 2021, after _Alois P. Heinz_ *)

%o (PARI) my(N=66, x='x+O('x^N)); Vec(1+sum(k=1, N, numdiv(k)*x^k/prod(j=1, k, 1-x^j))) \\ _Seiichi Manyama_, Jan 21 2022

%o (PARI) my(N=66, x='x+O('x^N)); Vec(1+sum(i=1, N, sum(j=1, N\i, x^(i*j)/prod(k=1, i*j, 1-x^k)))) \\ _Seiichi Manyama_, Jan 21 2022

%Y Cf. A000005, A000219, A008284, A101509, A316245, A319066, A323295, A323300, A323307, A323429, A323434.

%K nonn

%O 0,3

%A _Gus Wiseman_, Jan 15 2019

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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)