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!)
A245105 a(n) = Sum_{k=0..n} binomial(n,k) * (2^k + 3^k)^(n-k) * 3^(k^2). 2

%I #13 Mar 14 2020 15:23:24

%S 1,5,115,23075,45885991,868409174855,151498753814478835,

%T 240133851527473763171555,3438118287689020571362466454991,

%U 443637201221274201739533177428155842575,515467077892246286863741619710574352065592734875

%N a(n) = Sum_{k=0..n} binomial(n,k) * (2^k + 3^k)^(n-k) * 3^(k^2).

%C Here we set p=2, q=3, t=u=v=1, in the binomial identity:

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

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

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

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

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

%H Paul D. Hanna, <a href="/A245105/b245105.txt">Table of n, a(n) for n = 0..45</a>

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

%F a(n) ~ 3^(n^2). - _Vaclav Kotesovec_, Sep 03 2017

%e E.g.f.: A(x) = 1 + 5*x + 115*x^2/2! + 23075*x^3/3! + 45885991*x^4/4! +...

%e Illustration of initial terms:

%e a(1) = (1 + 1) + 3 = 5;

%e a(2) = (1 + 1)^2 + 2*(2 + 3)*3 + 3^4 = 115;

%e a(3) = (1 + 1)^3 + 3*(2 + 3)^2*3 + 3*(2^2 + 3^2)*3^4 + 3^9 = 23075;

%e a(4) = (1 + 1)^4 + 4*(2 + 3)^3*3 + 6*(2^2 + 3^2)^2*3^4 + 4*(2^3 + 3^3)*3^9 + 3^16 = 45885991;

%e a(5) = (1 + 1)^5 + 5*(2 + 3)^4*3 + 10*(2^2 + 3^2)^3*3^4 + 10*(2^3 + 3^3)^2*3^9 + 5*(2^4 + 3^4)*3^16 + 3^25 = 868409174855; ...

%e and by the binomial identity:

%e a(1) = 1 + (1 + 3) = 5;

%e a(2) = 1 + 2*(1 + 2*3) + (1 + 3^2)^2 = 115;

%e a(3) = 1 + 3*(1 + 2^2*3) + 3*(1 + 2*3^2)^2 + (1 + 3^3)^3 = 23075;

%e a(4) = 1 + 4*(1 + 2^3*3) + 6*(1 + 2^2*3^2)^2 + 4*(1 + 2*3^3)^3 + (1 + 3^4)^4 = 45885991;

%e a(5) = 1 + 5*(1 + 2^4*3) + 10*(1 + 2^3*3^2)^2 + 10*(1 + 2^2*3^3)^3 + 5*(1 + 2*3^4)^4 + (1 + 3^5)^5 = 868409174855; ...

%t Table[Sum[Binomial[n,k](2^k+3^k)^(n-k) 3^(k^2),{k,0,n}],{n,0,10}] (* _Harvey P. Dale_, Mar 14 2020 *)

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

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

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

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

%Y Cf. A245104.

%K nonn

%O 0,2

%A _Paul D. Hanna_, Jul 12 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 16 05:35 EDT 2024. Contains 371697 sequences. (Running on oeis4.)