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!)
A090362 Satisfies A^6 = BINOMIAL(A)^5 and also equals A090358^5. 4

%I #18 Nov 02 2019 03:12:36

%S 1,5,40,460,7220,148276,3831760,120333680,4460572870,190679906990,

%T 9230084185456,498734395394840,29740372199558420,1939241402832412180,

%U 137222625361036807760,10470376552560151801616,856818090423771231257245

%N Satisfies A^6 = BINOMIAL(A)^5 and also equals A090358^5.

%C See comments in A090358.

%H Vaclav Kotesovec, <a href="/A090362/b090362.txt">Table of n, a(n) for n = 0..320</a>

%F G.f.: A(x)^6 = A(x/(1-x))^5/(1-x)^5.

%F a(n) ~ (n-1)! / (6 * (log(6/5))^(n+1)). - _Vaclav Kotesovec_, Nov 19 2014

%F From _Peter Bala_, May 26 2015: (Start)

%F O.g.f.: A(x) = exp( Sum_{n >= 1} b(n)*x^n/n ), where b(n) = Sum_{k = 1..n} k!*Stirling2(n,k)*5^k = A094418(n).

%F BINOMIAL(A(x)) = exp( Sum_{n >= 1} c(n)*x^n/n ) where c(n) = (-1)^n*Sum_{k = 1..n} k!*Stirling2(n,k)*(-6)^k. A(x) = B(x)^5 and BINOMIAL(A(x)) = B(x)^6 where B(x) = 1 + x + 6*x^2 + 66*x^3 + 1071*x^4 + ... is the o.g.f. for A090358. See also A019538. (End)

%t nmax = 16; sol = {a[0] -> 1};

%t Do[A[x_] = Sum[a[k] x^k, {k, 0, n}] /. sol; eq = CoefficientList[A[x]^6 - A[x/(1 - x)]^5/(1 - x)^5 + O[x]^(n + 1), x] == 0 /. sol; sol = sol ~Join~ Solve[eq][[1]], {n, 1, nmax}];

%t sol /. Rule -> Set;

%t a /@ Range[0, nmax] (* _Jean-François Alcover_, Nov 02 2019 *)

%o (PARI) {a(n)=local(A); if(n<0,0,A=1+x+x*O(x^n); for(k=1,n,B=subst(A,x,x/(1-x))/(1-x)+x*O(x^n); A=A-A^6+B^5);polcoeff(A,n,x))}

%Y Cf. A090358; A019538, A094418.

%K nonn,easy

%O 0,2

%A _Paul D. Hanna_, Nov 26 2003

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 March 28 14:38 EDT 2024. Contains 371254 sequences. (Running on oeis4.)