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!)
A369555 Expansion of g.f. A(x) satisfying A(x) = A( x^2*(1+x)^5 ) / x. 7

%I #10 Jan 26 2024 08:33:52

%S 1,5,15,60,245,826,2685,9285,33170,120170,440326,1615095,5883375,

%T 21190660,75236135,263524256,914398280,3157044220,10882619895,

%U 37556051395,130016429216,451988934200,1578008726440,5530356335910,19444175637910,68542014844306,242123225194065,856755084242890

%N Expansion of g.f. A(x) satisfying A(x) = A( x^2*(1+x)^5 ) / x.

%C The radius of convergence r of g.f. A(x) solves r*(1+r)^5 = 1 where r = 0.2851990332453493679...

%H Paul D. Hanna, <a href="/A369555/b369555.txt">Table of n, a(n) for n = 1..500</a>

%F G.f. A(x) = Sum_{n>=1} a(n)*x^n satisfies:

%F (1) A(x) = A( x^2*(1+x)^5 ) / x.

%F (2) R(x*A(x)) = x^2*(1+x)^5, where R(A(x)) = x.

%F (3) A(x) = x * Product_{n>=1} F(n)^5, where F(1) = 1+x, and F(n+1) = 1 + (F(n) - 1)^2 * F(n)^5 for n >= 1.

%F (4) A(x) = B(x)^5/x^4 where B(x) is the g.f. of A369548.

%e G.f.: A(x) = x + 5*x^2 + 15*x^3 + 60*x^4 + 245*x^5 + 826*x^6 + 2685*x^7 + 9285*x^8 + 33170*x^9 + 120170*x^10 + 440326*x^11 + ...

%e RELATED SERIES.

%e (x^4*A(x))^(1/5) = x + x^2 + x^3 + 6*x^4 + 16*x^5 + 31*x^6 + 76*x^7 + 267*x^8 + 1067*x^9 + 4158*x^10 + ... + A369548(n)*x^n + ...

%e Let R(x) be the series reversion of A(x),

%e R(x) = x - 5*x^2 + 35*x^3 - 310*x^4 + 3105*x^5 - 33201*x^6 + 370405*x^7 - 4263900*x^8 + 50282555*x^9 - 604351325*x^10 + ...

%e then R(x) and g.f. A(x) satisfy:

%e (1) R(A(x)) = x,

%e (2) R(x*A(x)) = x^2*(1 + x)^5.

%e GENERATING METHOD.

%e Define F(n), a polynomial in x of order 7^(n-1), by the following recurrence:

%e F(1) = (1 + x),

%e F(2) = (1 + x^2 * (1+x)^5),

%e F(3) = (1 + x^4 * (1+x)^10 * F(2)^5),

%e F(4) = (1 + x^8 * (1+x)^20 * F(2)^10 * F(3)^5),

%e F(5) = (1 + x^16 * (1+x)^40 * F(2)^20 * F(3)^10 * F(4)^5),

%e ...

%e F(n+1) = 1 + (F(n) - 1)^2 * F(n)^5

%e ...

%e Then the g.f. A(x) equals the infinite product:

%e A(x) = x * F(1)^5 * F(2)^5 * F(3)^5 * ... * F(n)^5 * ...

%o (PARI) {a(n) = my(A=[1],F); for(i=1,n, A=concat(A,0); F=x*Ser(A); A[#A] = polcoeff( subst(F,x, x^2*(1 + x)^5 ) - x*F ,#A+1) ); A[n]}

%o for(n=1,35, print1(a(n),", "))

%Y Cf. A369548, A350432, A369552, A369553, A369554, A369556.

%K nonn

%O 1,2

%A _Paul D. Hanna_, Jan 25 2024

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 September 1 00:14 EDT 2024. Contains 375575 sequences. (Running on oeis4.)