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!)
A293012 Square array A(n,k), n >= 0, k >= 0, read by antidiagonals, where column k is the expansion of e.g.f. exp(x/(1 - x)^k). 8
1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 5, 13, 1, 1, 1, 7, 31, 73, 1, 1, 1, 9, 55, 241, 501, 1, 1, 1, 11, 85, 529, 2261, 4051, 1, 1, 1, 13, 121, 961, 6121, 24781, 37633, 1, 1, 1, 15, 163, 1561, 13041, 82711, 309835, 394353, 1, 1, 1, 17, 211, 2353, 24101, 207001, 1273567, 4342241, 4596553, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,9
LINKS
FORMULA
E.g.f. of column k: exp(x/(1 - x)^k).
From Seiichi Manyama, Oct 21 2017: (Start)
Let B(j,k) = (-1)^(j-1)*binomial(-k,j-1) for j>0 and k>=0.
A(0,k) = 1 and A(n,k) = (n-1)! * Sum_{j=1..n} j*B(j,k)*A(n-j,k)/(n-j)! for n > 0. (End)
A(n,k) = n! * Sum_{j=0..n} binomial(n+(k-1)*j-1,n-j)/j!. - Seiichi Manyama, Mar 06 2023
EXAMPLE
E.g.f. of column k: A_k(x) = 1 + x/1! + (2*k + 1)*x^2/2! + (3*k^2 + 9*k + 1)*x^3/3! + (4*k^3 + 36*k^2 + 32*k + 1)*x^4/4! + ...
Square array begins:
1, 1, 1, 1, 1, 1, ...
1, 1, 1, 1, 1, 1, ...
1, 3, 5, 7, 9, 11, ...
1, 13, 31, 55, 85, 121, ...
1, 73, 241, 529, 961, 1561, ...
1, 501, 2261, 6121, 13041, 24101, ...
MATHEMATICA
Table[Function[k, n! SeriesCoefficient[Exp[x/(1 - x)^k], {x, 0, n}]][j - n], {j, 0, 10}, {n, 0, j}] // Flatten
PROG
(PARI) T(n, k) = n!*sum(j=0, n, binomial(n+(k-1)*j-1, n-j)/j!); \\ Seiichi Manyama, Mar 06 2023
CROSSREFS
Columns k=0..4 give A000012, A000262, A082579, A091695, A361283.
Main diagonal gives A293013.
Sequence in context: A307855 A361277 A300853 * A341033 A348481 A274391
KEYWORD
nonn,tabl
AUTHOR
Ilya Gutkovskiy, Sep 28 2017
STATUS
approved

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 September 16 12:57 EDT 2024. Contains 375976 sequences. (Running on oeis4.)