cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A136505 a(n) = binomial(2^n + 1, n).

This page as a plain text file.
%I A136505 #8 Mar 14 2021 20:40:23
%S A136505 1,3,10,84,2380,237336,82598880,99949406400,422825581068000,
%T A136505 6318976181520699840,337559127276933693852160,
%U A136505 65182103393445184131620004864,45946437874792132748338425828443136
%N A136505 a(n) = binomial(2^n + 1, n).
%H A136505 G. C. Greubel, <a href="/A136505/b136505.txt">Table of n, a(n) for n = 0..50</a>
%F A136505 G.f.: A(x) = Sum_{n>=0} (1 + 2^n*x) * log(1 + 2^n*x)^n/n!.
%F A136505 a(n) ~ 2^(n^2) / n!. - _Vaclav Kotesovec_, Jul 02 2016
%p A136505 A136505:= n-> binomial(2^n+1,n); seq(A136505(n), n=0..20); # _G. C. Greubel_, Mar 14 2021
%t A136505 Table[Binomial[2^n+1,n], {n,0,15}] (* _Vaclav Kotesovec_, Jul 02 2016 *)
%o A136505 (PARI) {a(n)=polcoeff(sum(i=0,n,(1+2^i*x +x*O(x^n))*log(1+2^i*x +x*O(x^n))^i/i!),n)}
%o A136505 (Sage) [binomial(2^n +1, n) for n in (0..20)] # _G. C. Greubel_, Mar 14 2021
%o A136505 (Magma) [Binomial(2^n +1, n): n in [0..20]]; // _G. C. Greubel_, Mar 14 2021
%Y A136505 Sequences of the form binomial(2^n +p*n +q, n): A136556 (0,-1), A014070 (0,0), this sequence (0,1), A136506 (0,2), A060690 (1,-1), A132683 (1,0), A132684 (1,1), A132685 (2,0), A132686 (2,1), A132687 (3,-1), A132688 (3,0), A132689 (3,1).
%Y A136505 Cf. A136507, A136555.
%K A136505 nonn
%O A136505 0,2
%A A136505 _Paul D. Hanna_, Jan 01 2008