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!)
A286653 Square array A(n,k), n>=0, k>=1, read by antidiagonals, where column k is the expansion of Product_{j>=1} (1 - x^(k*j))/(1 - x^j). 9

%I #25 Jun 19 2021 12:37:46

%S 1,1,0,1,1,0,1,1,1,0,1,1,2,2,0,1,1,2,2,2,0,1,1,2,3,4,3,0,1,1,2,3,4,5,

%T 4,0,1,1,2,3,5,6,7,5,0,1,1,2,3,5,6,9,9,6,0,1,1,2,3,5,7,10,12,13,8,0,1,

%U 1,2,3,5,7,10,13,16,16,10,0,1,1,2,3,5,7,11,14,19,22,22,12,0

%N Square array A(n,k), n>=0, k>=1, read by antidiagonals, where column k is the expansion of Product_{j>=1} (1 - x^(k*j))/(1 - x^j).

%C A(n,k) is the number of partitions of n in which no parts are multiples of k.

%C A(n,k) is also the number of partitions of n into at most k-1 copies of each part.

%H Seiichi Manyama, <a href="/A286653/b286653.txt">Antidiagonals n = 0..139, flattened</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/PartitionFunctionb.html">Partition Function b_k</a>

%H <a href="/index/Par#part">Index entries for sequences related to partitions</a>

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

%e Square array begins:

%e 1, 1, 1, 1, 1, 1, ...

%e 0, 1, 1, 1, 1, 1, ...

%e 0, 1, 2, 2, 2, 2, ...

%e 0, 2, 2, 3, 3, 3, ...

%e 0, 2, 4, 4, 5, 5, ...

%e 0, 3, 5, 6, 6, 7, ...

%p b:= proc(n, i, k) option remember; `if`(n=0, [1, 0], `if`(k*i*(i+1)/2<n, 0,

%p add((l->[0, l[1]*j]+l)(b(n-i*j, i-1, k)), j=0..min(n/i, k))))

%p end:

%p A:= (n, k)-> b(n$2, k-1)[1]:

%p seq(seq(A(n, 1+d-n), n=0..d), d=0..16); # _Alois P. Heinz_, Oct 17 2018

%t Table[Function[k, SeriesCoefficient[Product[(1 - x^(i k))/(1 - x^i), {i, Infinity}], {x, 0, n}]][j - n + 1], {j, 0, 12}, {n, 0, j}] // Flatten

%t Table[Function[k, SeriesCoefficient[QPochhammer[x^k, x^k]/QPochhammer[x, x], {x, 0, n}]][j - n + 1], {j, 0, 12}, {n, 0, j}] // Flatten

%Y Columns k=1-13 give: A000007, A000009, A000726, A001935, A035959, A219601, A035985, A261775, A104502, A261776, A328545, A328546, A341714.

%Y Main diagonal gives A000041.

%Y Mirror of A061198.

%Y Cf. A061199, A210485.

%K nonn,tabl

%O 0,13

%A _Ilya Gutkovskiy_, May 11 2017

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 July 30 12:09 EDT 2024. Contains 374743 sequences. (Running on oeis4.)