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!)
A209631 Square array A(n,k), n>=0, k>=0, read by antidiagonals, A(n,k) = exponential transform applied n times to identity function, evaluated at k. 2

%I #16 Feb 27 2014 03:43:40

%S 0,1,1,1,1,2,1,1,3,3,1,1,4,10,4,1,1,5,20,41,5,1,1,6,33,127,196,6,1,1,

%T 7,49,280,967,1057,7,1,1,8,68,518,2883,8549,6322,8,1,1,9,90,859,6689,

%U 34817,85829,41393,9,1,1,10,115,1321,13310,101841,481477

%N Square array A(n,k), n>=0, k>=0, read by antidiagonals, A(n,k) = exponential transform applied n times to identity function, evaluated at k.

%C Motivation: The exponential transform applied n times to the constant function 1 evaluated at k was studied by E. T. Bell (see A144150).

%H Discussion on seqcomp: <a href="http://groups.google.com/group/seqcomp/browse_thread/thread/c8c8725327093f95">A little challenge</a>

%e n\k [0][1][2] [3] [4] [5] [6]

%e [0] 0, 1, 2, 3, 4, 5, 6

%e [1] 1, 1, 3, 10, 41, 196, 1057 [A000248]

%e [2] 1, 1, 4, 20, 127, 967, 8549 [A007550]

%e [3] 1, 1, 5, 33, 280, 2883, 34817

%e [4] 1, 1, 6, 49, 518, 6689, 101841

%e [5] 1, 1, 7, 68, 859, 13310, 243946

%e [6] 1, 1, 8, 90, 1321, 23851, 510502

%e column3(n) = (3*n^2 + 11*n + 6)/2!

%e column4(n) = (18*n^3 + 93*n^2 + 111*n + 24)/3!

%e column5(n) = (180*n^4 + 1180*n^3 + 2160*n^2 + 1064*n + 120)/4!

%e column6(n) = (2700*n^5+21225*n^4+51850*n^3+41835*n^2+8510*n+720)/5!

%p # Implementation after Alois P. Heinz.

%p exptr := proc(p) local g; g := proc(n) option remember; local k;

%p `if`(n=0, 1, add(binomial(n-1, k-1)*p(k)*g(n-k), k=1..n)) end end:

%p A209631 := (n,k) -> (exptr@@n)(m->m)(k):

%p seq(lprint(seq(A209631(n,k), k=0..6)), n=0..6);

%t exptr[p_] := Module[{g}, g[n_] := g[n] = Module[{k}, If[n == 0, 1, Sum[Binomial[n-1, k-1]*p[k]*g[n-k], {k, 1, n}]]]; g]; A209631[n_, k_] := Nest[exptr, Identity, n][k]; Table[A209631[n-k , k], {n, 0, 10}, {k, 0, n}] // Flatten (* _Jean-François Alcover_, Feb 27 2014, after _Alois P. Heinz_ *)

%Y Cf. A000248, A007550, A111672, A144150.

%K nonn,tabl

%O 0,6

%A _Peter Luschny_, Mar 11 2012

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 7 19:59 EDT 2024. Contains 375749 sequences. (Running on oeis4.)