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!)
A337755 G.f. A(x) satisfies: 1 = Sum_{n>=0} (n+1) * 2^n * ((1+x)^n - A(x))^n. 4

%I #15 Oct 08 2020 02:25:44

%S 1,1,3,52,1320,43440,1722712,79186272,4118457732,238450436416,

%T 15189543467688,1055122226778720,79359687454230296,

%U 6425540170275120528,557306222539540276176,51558846502494563714080,5068865533417385007925076,527798429103621760357553448,58032815995114574483132149504

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

%C In general, the following sums are equal:

%C (1) Sum_{n>=0} binomial(n+k-1, n) * r^n * (p + q^n)^n,

%C (2) Sum_{n>=0} binomial(n+k-1, n) * r^n * q^(n^2) / (1 - r*p*q^n)^(n+k),

%C for any fixed integer k; here, k = 2 with r = 2, p = -A(x), q = (1+x).

%H Paul D. Hanna, <a href="/A337755/b337755.txt">Table of n, a(n) for n = 0..200</a>

%F G.f. A(x) satisfies:

%F (1) 1 = Sum_{n>=0} (n+1) * 2^n * ((1+x)^n - A(x))^n.

%F (2) 1 = Sum_{n>=0} (n+1) * 2^n * (1+x)^(n^2) / (1 + 2*(1+x)^n*A(x))^(n+2).

%F a(n) ~ c * d^n * n! * sqrt(n), where d = (1 + 2*exp(1/r)) * r^2 = 5.9039765456700218004884947864345974878995107118996038057..., where r = 0.925556278640887084941460444526398190071550948416... is the root of the equation exp(1/r) * (1 + 1/(r*LambertW(-exp(-1/r)/r))) = -1/2 and c = 0.0300441568138... - _Vaclav Kotesovec_, Sep 25 2020

%e G.f.: A(x) = 1 + x + 3*x^2 + 52*x^3 + 1320*x^4 + 43440*x^5 + 1722712*x^6 + 79186272*x^7 + 4118457732*x^8 + 238450436416*x^9 + ...

%e where

%e 1 = 1 + 2*2*((1+x) - A(x)) + 3*2^2*((1+x)^2 - A(x))^2 + 4*2^3*((1+x)^3 - A(x))^3 + 5*2^4*((1+x)^4 - A(x))^4 + 6*2^5*((1+x)^5 - A(x))^5 + 7*2^6*((1+x)^6 - A(x))^6 + 8*2^7*((1+x)^7 - A(x))^7 + ... + (n+1)*2^n*((1+x)^n - A(x))^n + ...

%e Also,

%e 1 = 1/(1 + 2*A(x))^2 + 2*2*(1+x)/(1 + 2*(1+x)*A(x))^3 + 3*2^2*(1+x)^4/(1 + 2*(1+x)^2*A(x))^4 + 4*2^3*(1+x)^9/(1 + 2*(1+x)^3*A(x))^5 + 5*2^4*(1+x)^16/(1 + 2*(1+x)^4*A(x))^6 + 6*2^5*(1+x)^25/(1 + 2*(1+x)^5*A(x))^7 + 7*2^6*(1+x)^36/(1 + 2*(1+x)^6*A(x))^8 + ... + (n+1)*2^n*(1+x)^(n^2)/(1 + 2*(1+x)^n*A(x))^(n+2) + ...

%o (PARI) {a(n) = my(A=[1]); for(i=0, n, A=concat(A, 0); A[#A] = Vec( sum(m=0, #A, (m+1) * 2^m * ((1+x)^m - Ser(A))^m ) )[#A]/4 ); A[n+1]}

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

%Y Cf. A303056, A337756, A337757, A301581.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Sep 18 2020

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 July 22 11:23 EDT 2024. Contains 374490 sequences. (Running on oeis4.)