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!)
A251569 E.g.f.: exp(x*G(x)) where G(x) = 1 + x*G(x)^3 is the g.f. of A001764. 1

%I #13 Feb 16 2015 04:10:36

%S 1,1,3,25,385,8661,255211,9280573,401106945,20075281705,1141518933811,

%T 72671265032961,5119905952974913,395447744211899965,

%U 33224120086567957275,3016468531370564888101,294296638636407727046401,30704676897459478866984273,3411268107193733242307499235

%N E.g.f.: exp(x*G(x)) where G(x) = 1 + x*G(x)^3 is the g.f. of A001764.

%C It appears that a(n) - 1 is divisible by n*(n - 1) for n >= 2. Cf. A251568. - _Peter Bala_, Feb 15 2015

%F a(n) = Sum_{k=0..n} n!/k! * binomial(3*n-2*k-1, n-k) * k/(2*n-k) for n>0 with a(0)=1.

%F Recurrence: 2*(2*n-1)*(54*n^2 - 171*n + 116)*a(n) = (1458*n^4 - 7533*n^3 + 12474*n^2 - 6624*n - 7)*a(n-1) - (324*n^3 - 1080*n^2 + 759*n + 95)*a(n-2) + 8*(n-2)*(54*n^2 - 63*n - 1)*a(n-3). - _Vaclav Kotesovec_, Feb 15 2015

%e E.g.f.: A(x) = 1 + x + 3*x^2/2! + 25*x^3/3! + 385*x^4/4! + 8661*x^5/5! +...

%e such that A(x) = exp(x*G(x)) where G(x) = 1 + x*G(x)^3:

%e G(x) = 1 + x + 3*x^2 + 12*x^3 + 55*x^4 + 273*x^5 + 1428*x^6 +...

%t Flatten[{1,Table[Sum[n!/k! * Binomial[3*n-2*k-1, n-k] * k/(2*n-k),{k,0,n}],{n,1,20}]}] (* _Vaclav Kotesovec_, Feb 15 2015 *)

%o (PARI) {a(n)=local(G=1);for(i=1,n,G=1+x*G^3 +x*O(x^n));n!*polcoeff(exp(x*G),n)}

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

%o (PARI) {a(n) = if(n==0,1,sum(k=1,n, n!/k! * binomial(3*n-2*k-1, n-k) * k/(2*n-k) ))}

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

%Y Cf. A001764, A251568.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Dec 05 2014

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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)