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!)
A196458 E.g.f.: A(x) = Sum_{n>=0} (3^n + (-1)^n)^n * exp((3^n + (-1)^n)*x) * x^n/n!. 2

%I #5 Mar 30 2012 18:37:31

%S 1,4,112,20608,47100160,848654393344,152543949079048192,

%T 239308785705492230176768,3442046584639832610980531077120,

%U 443426848780270385458655031044167696384,515552048984399455145742768443316759297510080512

%N E.g.f.: A(x) = Sum_{n>=0} (3^n + (-1)^n)^n * exp((3^n + (-1)^n)*x) * x^n/n!.

%C When p=-1, q=3, this sequence illustrates the following identity.

%C Given e.g.f.: Sum_{n>=0} (p^n+q^n)^n*exp((p^n+q^n)*x)*x^n/n! = Sum_{n>=0} a(n)*x^n/n!,

%C then a(n) = Sum_{k=0..n} C(n,k)*(p^k + q^k)^n = Sum_{k=0..n} C(n,k)*(1 + p^(n-k)*q^k)^n;

%C which is a special case of the more general binomial identity:

%C Sum_{k=0..n} C(n,k)*(s*p^k + t*q^k)^(n-k) * (u*p^k + v*q^k)^k = Sum_{k=0..n} C(n,k)*(s + u*p^(n-k)*q^k)^(n-k) * (t + v*p^(n-k)*q^k)^k.

%F a(n) = Sum_{k=0..n} C(n,k)*(3^k + (-1)^k)^n.

%F a(n) = Sum_{k=0..n} C(n,k)*(1 + (-1)^(n-k)*3^k)^n.

%e E.g.f.: A(x) = 1 + 4*x + 112*x^2/2! + 20608*x^3/3! + 47100160*x^4/4! +...

%e where

%e _ A(x) = exp((1+1)*x) + (3-1)*exp((3-1)*x)*x + (3^2+1)^2*exp((3^2+1)*x)*x^2/2! + (3^3-1)^3*exp((3^3-1)*x)*x^3/3! +...

%e or, equivalently,

%e _ A(x) = exp(2*x) + 2*exp(2*x)*x + 10^2*exp(10*x)*x^2/2! + 26^3*exp(26*x)*x^3/3! + 82^4*exp(82*x)*x^4/4! + 242^5*exp(242*x)*x^5/5! +...

%e Illustrate the formula for the terms:

%e a(1) = (1+1) + (3-1) = 4 ;

%e a(2) = (1+1)^2 + 2*(3-1)^2 + (3^2+1)^2 = 2^2 + 2*2^2 + 10^2 = 112 ;

%e a(3) = (1+1)^3 + 3*(3-1)^3 + 3*(3^2+1)^3 + (3^3-1)^3 = 2^3 + 3*2^3 + 3*10^3 + 26^3 = 20608 ;

%e a(4) = (1+1)^4 + 4*(3-1)^4 + 6*(3^2+1)^4 + 4*(3^3-1)^4 + (3^4+1)^4 = 2^4 + 4*2^4 + 6*10^4 + 4*26^4 + 82^4 = 47100160.

%o (PARI) {a(n)=n!*polcoeff(sum(m=0,n,exp((3^m+(-1)^m+x*O(x^n))*x)*(3^m+(-1)^m)^m*x^m/m!),n)}

%o (PARI) {a(n)=sum(k=0,n,binomial(n,k)*(3^k + (-1)^k)^n)}

%o (PARI) {a(n)=sum(k=0,n,binomial(n,k)*(1 + (-1)^(n-k)*3^k)^n)}

%o (PARI) {a(n)=local(p=-1, q=3);n!*polcoeff(sum(m=0,n,(p^m+q^m)^m*exp((p^m+q^m+x*O(x^n))*x)*x^m/m!),n)}

%o (PARI) {a(n)=local(p=-1, q=3, s=1, t=1, u=1, v=1);

%o sum(k=0, n, binomial(n, k)*(s*p^k + t*q^k)^(n-k)*(u*p^k + v*q^k)^k)}

%o (PARI) /* right side of the general binomial identity: */

%o {a(n)=local(p=-1, q=3, s=1, t=1, u=1, v=1);

%o sum(k=0, n, binomial(n, k)*(s + u*p^(n-k)*q^k)^(n-k) * (t + v*p^(n-k)*q^k)^k)}

%Y Cf. A196457, A196459, A196460, A138247.

%K nonn

%O 0,2

%A _Paul D. Hanna_, Nov 20 2011

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 26 09:05 EDT 2024. Contains 371991 sequences. (Running on oeis4.)