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!)
A251660 Table of coefficients in functions R(n,x) defined by R(n,x) = exp( n*x*G(n,x)^(n-1) ) / G(n,x)^(n-1) where G(n,x) = 1 + x*G(n,x)^n, for rows n>=1. 0

%I #11 Dec 22 2014 12:39:18

%S 1,1,1,1,1,1,1,1,2,1,1,1,3,8,1,1,1,4,21,56,1,1,1,5,40,261,592,1,1,1,6,

%T 65,712,4833,8512,1,1,1,7,96,1505,18784,120303,155584,1,1,1,8,133,

%U 2736,51505,663424,3778029,3456896,1,1,1,9,176,4501,115056,2354725,29480896,143531433,90501632,1

%N Table of coefficients in functions R(n,x) defined by R(n,x) = exp( n*x*G(n,x)^(n-1) ) / G(n,x)^(n-1) where G(n,x) = 1 + x*G(n,x)^n, for rows n>=1.

%F E.g.f. of row n, R(n,x), for n>=1, satisfies:

%F (1) [x^k/k!] R(n,x)^(k+1) = n^(k-1) * (n+k) * (k+1)^(k-2) for k>=0.

%F (2) R(n,x) = exp( n*x*G(n,x)^(n-1) ) / G(n,x)^(n-1), where G(n,x) = 1 + x*G(n,x)^n.

%F (3) R'(n,x)/R(n,x) = G(n,x)^(n-1), where G(n,x) = 1 + x*G(n,x)^n.

%F T(n,k) = Sum_{j=0..k} n^j * k!/j! * binomial(n*(k-1)-j, k-j) * (j-1)/(k-1) for k>1, n>=1.

%e This table begins:

%e n=1: [1, 1, 1, 1, 1, 1, 1, 1, ...];

%e n=2: [1, 1, 2, 8, 56, 592, 8512, 155584, ...];

%e n=3: [1, 1, 3, 21, 261, 4833, 120303, 3778029, ...];

%e n=4: [1, 1, 4, 40, 712, 18784, 663424, 29480896, ...];

%e n=5: [1, 1, 5, 65, 1505, 51505, 2354725, 135258625, ...];

%e n=6: [1, 1, 6, 96, 2736, 115056, 6455376, 454666176, ...];

%e n=7: [1, 1, 7, 133, 4501, 224497, 14926387, 1245099709, ...];

%e n=8: [1, 1, 8, 176, 6896, 397888, 30584128, 2948178304, ...];

%e n=9: [1, 1, 9, 225, 10017, 656289, 57255849, 6262226721, ...];

%e n=10:[1, 1, 10, 280, 13960, 1023760, 99935200, 12226859200, ...]; ...

%e where e.g.f. of row n equals: exp( n*x*G(n,x)^(n-1) ) / G(n,x)^(n-1).

%e Related table of coefficients in G(n,x) = 1 + x*G(n,x)^n begins:

%e n=1: [1, 1, 1, 1, 1, 1, 1, 1, ...];

%e n=2: [1, 1, 2, 5, 14, 42, 132, 429, ...];

%e n=3: [1, 1, 3, 12, 55, 273, 1428, 7752, ...];

%e n=4: [1, 1, 4, 22, 140, 969, 7084, 53820, ...];

%e n=5: [1, 1, 5, 35, 285, 2530, 23751, 231880, ...];

%e n=6: [1, 1, 6, 51, 506, 5481, 62832, 749398, ...];

%e n=7: [1, 1, 7, 70, 819, 10472, 141778 , 1997688, ...];

%e n=8: [1, 1, 8, 92, 1240, 18278, 285384, 4638348, ...];

%e n=9: [1, 1, 9, 117, 1785, 29799, 527085, 9706503, ...];

%e n=10:[1, 1, 10, 145, 2470, 46060, 910252, 18730855, ...]; ...

%o (PARI) {T(n,k)=local(G=1); for(i=0, k, G=1+x*G^n +x*O(x^k)); k!*polcoeff(exp(n*x*G^(n-1))/G^(n-1), k)}

%o /* Print as a rectangular table */

%o for(n=1, 10, for(k=0,10, print1(T(n,k), ", "));print(""))

%o /* Print as a flattened table */

%o for(n=0, 12, for(k=0,n, print1(T(n-k+1,k), ", "));)

%o /* Print the Related table of functions G(n,x) = 1 + x*G(n,x)^n */

%o {R(n,k)=local(G=1); for(i=0, k, G=1+x*G^n +x*O(x^k)); polcoeff(G, k)}

%o for(n=1, 10, for(k=0,10, print1(R(n,k), ", "));print(""))

%o (PARI) /* Binomial sum formula for term T(n,k) */

%o {T(n,k) = if(k<=1,1,sum(j=0,k, n^j * k!/j! * binomial(n*(k-1)-j, k-j) * (j-1)/(k-1)))}

%o for(n=1, 10, for(k=0, 10, print1(T(n, k), ", ")); print(""))

%Y Cf. Rows: A243953, A251573, A251574, A251575, A251576, A251577, A251578, A251579, A251580.

%K nonn,tabl

%O 1,9

%A _Paul D. Hanna_, Dec 21 2014

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