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

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

%S 1,1,4,21,131,917,6988,56965,491240,4447558,42048457,413473928,

%T 4215959294,44469487070,484303175837,5437300482651,62848069403649,

%U 747063566345320,9123406697372938,114370704441951620,1470590692488141315,19381056189738194070

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

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

%F G.f.: A(x) = 1/(1 - A(x/(1-x))^2*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 b:= invtr(bintr(n-> add(a(i)*a(n-i), i=0..n))):

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

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

%t m = 30; A[_] = 1; Do[A[x_] = 1/(1 - A[x/(1-x)]^2*(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^2,x,x/(1-x))/(1-x)+x*O(x^n); A=1+x*A*B);polcoeff(A,n,x)))}

%Y Cf. A090365, A090367.

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