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!)
A220231 G.f.: Sum_{n>=1} (2 - (1-x)^n) * (1 - (1-x)^n)^(n-1) / (1-x)^(n^2). 1

%I #22 Dec 11 2012 11:49:56

%S 1,4,22,184,2094,30300,532918,11041936,263451958,7114155240,

%T 214501732236,7143254501280,260397686968140,10313589262630724,

%U 441025376697310226,20250545724670230240,993756093394720170206,51903607891071021948092,2874779134773855301743682

%N G.f.: Sum_{n>=1} (2 - (1-x)^n) * (1 - (1-x)^n)^(n-1) / (1-x)^(n^2).

%C Compare the g.f. of this sequence to the identity (when G(x) = 1/(1-x)):

%C 1 = Sum_{n>=1} (2*G(x)^n - 1) * (1 - G(x)^n)^(n-1) for all G(x) such that G(0)=1.

%F G.f.: 1 + Sum_{n>=1} 2*(2 - (1-x)^(2*n)) * (1 - (1-x)^(2*n))^(2*n-1) / (1-x)^(4*n^2).

%F G.f.: -1 + Sum_{n>=0} 2*(2 - (1-x)^(2*n+1))*(1 - (1-x)^(2*n+1))^(2*n)/(1-x)^((2*n+1)^2).

%e G.f.: A(x) = 1 + 4*x + 22*x^2 + 184*x^3 + 2094*x^4 + 30300*x^5 +...

%e where

%e A(x) = (1+x)/(1-x) + (1+2*x-x^2)*(2*x-x^2)/(1-x)^4 + (1+3*x-3*x^2+x^3)*(3*x-3*x^2+x^3)^2/(1-x)^9 + (1+4*x-6*x^2+4*x^3-x^4)*(4*x-6*x^2+4*x^3-x^4)^3/(1-x)^16 +...

%e Compare the g.f. to the identity:

%e 1 = (1+x)/(1-x) - (1+2*x-x^2)*(2*x-x^2)/(1-x)^4 + (1+3*x-3*x^2+x^3)*(3*x-3*x^2+x^3)^2/(1-x)^9 - (1+4*x-6*x^2+4*x^3-x^4)*(4*x-6*x^2+4*x^3-x^4)^3/(1-x)^16 +-...

%o (PARI) {a(n)=polcoeff(sum(m=1, n+1, (2 - (1-x)^m) * (1 - (1-x)^m +x*O(x^n))^(m-1)/(1-x+x*O(x^n))^(m^2)), n)}

%o for(n=0, 20, print1(a(n), ", "))

%o (PARI) {a(n)=polcoeff(1+sum(m=1, n\2+1, 2*(2 - (1-x)^(2*m)) * (1 - (1-x)^(2*m) +x*O(x^n))^(2*m-1)/(1-x+x*O(x^n))^(4*m^2)), n)}

%o for(n=0, 20, print1(a(n), ", "))

%o (PARI) {a(n)=polcoeff(-1+sum(m=0, n\2, 2*(2 - (1-x)^(2*m+1)) * (1 - (1-x)^(2*m+1) +x*O(x^n))^(2*m)/(1-x+x*O(x^n))^((2*m+1)^2)), n)}

%o for(n=0, 20, print1(a(n), ", "))

%Y Cf. A220266.

%K nonn

%O 0,2

%A _Paul D. Hanna_, Dec 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 April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)