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!)
A113134 a(0) = a(1) = 1, a(2) = x, a(3) = 2x^2, a(n) = x*(n-1)*a(n-1) + Sum_{j=2..n-2} (j-1)*a(j)*a(n-j), n>=4 and for x = 7. 7

%I #12 Jun 13 2017 22:42:20

%S 1,1,7,98,2107,61054,2215094,96203268,4856212179,279081882086,

%T 17981777803682,1283631249683804,100557420457355358,

%U 8577121056958121836,791318123914138366924,78521346319092948749576

%N a(0) = a(1) = 1, a(2) = x, a(3) = 2x^2, a(n) = x*(n-1)*a(n-1) + Sum_{j=2..n-2} (j-1)*a(j)*a(n-j), n>=4 and for x = 7.

%F a(n+1) = Sum{k, 0<=k<=n} 7^k*A113129(n, k).

%F G.f.: A(x) = x/series_reversion(x*G(x)) where G(x) = g.f. of 7-fold factorials.

%F G.f. satisfies: A(x*G(x)) = G(x) = g.f. of 7-fold factorials.

%e a(2) = 7.

%e a(3) = 2*7^2 = 98.

%e a(4) = 7*3*98 + 1*7*7 = 2107.

%e a(5) = 7*4*2107 + 1*7*98 + 2*98*7 = 61054.

%e a(6) = 7*5*61054 + 1*7*2107 + 2*98*98 + 3*2107*7 = 2215094.

%e G.f.: A(x) = 1 + x + 7*x^2 + 98*x^3 + 2107*x^4 + 61054*x^5

%e +...

%e = x/series_reversion(x + x^2 + 8*x^3 + 120*x^4 + 2640*x^5

%e +...).

%t x=7;a[0]=a[1]=1;a[2]=x;a[3]=2x^2;a[n_]:=a[n]=x*(n-1)*a[n-1]+Sum[(j-1)*a[j ]*a[n-j], {j, 2, n-2}];Table[a[n], {n, 0, 16}](_Robert G. Wilson v_)

%o (PARI) a(n)=Vec(x/serreverse(x*Ser(vector(n+1,k,if(k==1,1, prod(j=0,k-2,7*j+1))))))[n+1]

%o (PARI) a(n,x=7)=if(n<0,0,if(n==0 || n==1,1,if(n==2,x,if(n==3,2*x^2,

%o x*(n-1)*a(n-1)+sum(j=2,n-2,(j-1)*a(j)*a(n-j))))))

%Y Cf. A045754, A075834(x=1), A111088(x=2), A113130(x=3), A113131(x=4), A113132(x=5), A113133(x=6), A113135(x=8).

%K nonn

%O 0,3

%A _Philippe Deléham_ and _Paul D. Hanna_, Oct 28 2005

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 25 16:23 EDT 2024. Contains 371989 sequences. (Running on oeis4.)