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!)
A216494 G.f. satisfies A(x) = 1 + x*A(x)^3/(1 - x^4*A(x)^10). 1

%I #12 Aug 28 2023 10:51:32

%S 1,1,3,12,55,274,1444,7923,44803,259326,1529034,9151733,55459124,

%T 339595673,2097962269,13060078469,81842038111,515867610612,

%U 3268440469234,20803681980270,132963257157430,852981624781996,5490522454007139,35450567948693263,229537971398979212,1490074420399924169,9696064337840077823

%N G.f. satisfies A(x) = 1 + x*A(x)^3/(1 - x^4*A(x)^10).

%F G.f. satisfies: A(x) = 1/A(-x*A(x)^5); note that the g.f. of A001764, G(x) = 1 + x*G(x)^3, also satisfies this condition.

%F a(n) = Sum_{k=0..floor(n/4)} binomial(n-3*k-1,k) * binomial(3*n-2*k+1,n-4*k)/(3*n-2*k+1). - _Seiichi Manyama_, Aug 28 2023

%e G.f.: A(x) = 1 + x + 3*x^2 + 12*x^3 + 55*x^4 + 274*x^5 + 1444*x^6 + 7923*x^7 +...

%e such that

%e A(x) = 1 + x*A(x)^3 + x^5*A(x)^13 + x^9*A(x)^23 + x^13*A(x)^33 + x^17*A(x)^43 +...

%e Given (1) A(x) = 1 + x*A(x)^3 / (1 - x^4*A(x)^10),

%e suppose (2) A(x) = 1/A(-x*A(x)^5),

%e then substituting x in (1) with -x*A(x)^5 yields:

%e 1/A(x) = 1 - x*A(x)^5/A(x)^3 / (1 - x^4*A(x)^20/A(x)^10),

%e which illustrates that (2) is consistent with (1).

%o (PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+x*A^3/(1 - x^4*A^10 +x*O(x^n))); polcoeff(A, n)}

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

%Y Cf. A216493, A001764.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Sep 07 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 20 00:03 EDT 2024. Contains 371798 sequences. (Running on oeis4.)