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!)
A090367 Shifts 1 place left under the INVERT transform of the BINOMIAL transform of the self-convolution cube of this sequence. 3

%I #12 Jun 04 2018 03:12:09

%S 1,1,5,34,276,2509,24739,259815,2873376,33207790,398897289,4960652325,

%T 63676368387,841741913795,11438028248093,159536511439266,

%U 2281321298635427,33411684617642665,500761214428795093,7674842860939188928,120209960716130232745

%N Shifts 1 place left under the INVERT transform of the BINOMIAL transform of the self-convolution cube of this sequence.

%H Alois P. Heinz, <a href="/A090367/b090367.txt">Table of n, a(n) for n = 0..200</a>

%F G.f.: A(x) = 1/(1 - A(x/(1-x))^3*x/(1-x) ).

%p bintr:= proc(p) local b; b:= proc(n) option remember;

%p add(p(k) *binomial(n,k), k=0..n) end

%p end:

%p invtr:= proc(p) local b; b:= proc(n) option remember;

%p `if`(n<1, 1, add(b(n-i) *p(i-1), i=1..n+1)) end

%p end:

%p s:= proc(n) option remember; add(a(i)*a(n-i), i=0..n) end:

%p b:= invtr(bintr(n-> add(s(i)*a(n-i), i=0..n))):

%p a:= n-> `if`(n<0, 0, b(n-1)):

%p seq(a(n), n=0..25); # _Alois P. Heinz_, Jun 28 2012

%t m = 25; A[_] = 1; Do[A[x_] = 1/(1 - A[x/(1-x)]^3*(x/(1-x))) + O[x]^m // Normal, {m}]; CoefficientList[A[x], x] (* _Jean-François Alcover_, Jun 04 2018 *)

%o (PARI) {a(n)=local(A); if(n<0,0,A=1+x+x*O(x^n); for(k=1,n,B=subst(A^3,x,x/(1-x))/(1-x)+x*O(x^n); A=1+x*A*B);polcoeff(A,n,x))}

%Y Cf. A090365, A090366.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Nov 26 2003

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 20 10:51 EDT 2024. Contains 371838 sequences. (Running on oeis4.)