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!)
A370070 a(n) = Sum_{i=0..n-1} binomial(2^i+2^(n-i-1)-2,2^i-1). 1

%I #13 Feb 11 2024 02:31:24

%S 0,1,2,4,10,38,274,5130,353186,180449810,1025875786562,

%T 474164444389402658,13339869168335987186843266,

%U 6036430661900479858398240235709517890,3241401154265052413102761158540183436937430482058498

%N a(n) = Sum_{i=0..n-1} binomial(2^i+2^(n-i-1)-2,2^i-1).

%F a(n) = A368548(2^n-1).

%F If n is odd, a(n) = binomial(2*(2^((n-1)/2)-1),2^((n-1)/2)-1) + 2*Sum_{i=0..(n-3)/2)} binomial(2^i+2^(n-i-1)-2,2^i-1).

%F If n is even, a(n) = 2*Sum_{i=0..n/2-1} binomial(2^i+2^(n-i-1)-2,2^i-1).

%F log(a(n)) ~ c * 2^(n/2), where c = 3*log(3)/2 - log(2) if n is even and c = sqrt(2)*log(2) if n is odd. - _Vaclav Kotesovec_, Feb 10 2024

%t Table[Sum[Binomial[2^i+2^(n-i-1)-2,2^i-1],{i,0,n-1}],{n,0,14}] (* _James C. McMahon_, Feb 08 2024 *)

%o (Python)

%o from math import comb

%o def A370070(n): return (sum(comb((1<<i)+(1<<n-i-1)-2,(1<<i)-1) for i in range(n>>1))<<1) + (comb(((1<<(n>>1))-1)<<1,(1<<(n>>1))-1) if n&1 else 0)

%Y Cf. A368548.

%K nonn

%O 0,3

%A _Chai Wah Wu_, Feb 08 2024

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 July 11 17:12 EDT 2024. Contains 374234 sequences. (Running on oeis4.)