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

%I #44 Dec 06 2019 08:41:28

%S 1,1,0,1,1,0,1,1,2,0,1,1,3,12,0,1,1,3,12,48,0,1,1,3,13,72,360,0,1,1,3,

%T 13,72,480,2880,0,1,1,3,13,73,500,3780,25200,0,1,1,3,13,73,500,4020,

%U 35280,241920,0,1,1,3,13,73,501,4050,37380,372960,2903040,0

%N Square array A(n,k), n >= 0, k >= 0, read by antidiagonals, where column k is the expansion of e.g.f. Product_{i>0} Sum_{j=0..k} x^(j*i)/j!.

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

%e Square array begins:

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

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

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

%e 0, 12, 12, 13, 13, ...

%e 0, 48, 72, 72, 73, ...

%e 0, 360, 480, 500, 500, ...

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

%p add(b(n-i*j, i-1, k)/j!, j=0..min(k, n/i))))

%p end:

%p A:= (n, k)-> n!*b(n$2, k):

%p seq(seq(A(n, d-n), n=0..d), d=0..12); # _Alois P. Heinz_, Oct 02 2017

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

%t A[n_, k_] := n! b[n, n, k];

%t Table[Table[A[n, d - n], {n, 0, d}], {d, 0, 12}] // Flatten (* _Jean-François Alcover_, Dec 06 2019, after _Alois P. Heinz_ *)

%Y Columns k=0..5 give A000007, A088311, A293138, A293195, A293196, A293197.

%Y Rows n=0 gives A000012.

%Y Main diagonal gives A000262.

%Y Cf. A293139.

%K nonn,tabl,look

%O 0,9

%A _Seiichi Manyama_, Oct 01 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 April 18 03:33 EDT 2024. Contains 371767 sequences. (Running on oeis4.)