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!)
A136648 Inverse binomial transform of A014070: a(n) = Sum_{k=0..n} (-1)^(n-k)*C(n,k)*C(2^k,k). 1
1, 1, 3, 43, 1625, 192785, 73792371, 94005141667, 408909577044065, 6204433373664395569, 334203804752658372354515, 64828498485572980097719939179, 45811084061472137471487315433296153, 119028111984311982345314987179033877373025, 1145664208319965667452046935744516601565935434531 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: A(x) = (1/(1+x))*Sum_{n>=0} [log(1 + (2^n+1)*x) - log(1+x)]^n / n!.
a(n) ~ 2^(n^2) / n!. - Vaclav Kotesovec, Jul 02 2016
MATHEMATICA
Table[Sum[(-1)^(n-k)*Binomial[n, k]*Binomial[2^k, k], {k, 0, n}], {n, 0, 15}] (* Vaclav Kotesovec, Jul 02 2016 *)
PROG
(PARI) {a(n)=sum(k=0, n, (-1)^(n-k)*binomial(n, k)*binomial(2^k, k))}
(PARI) /* Using the g.f.: */ {a(n)=local(X=x+x*O(x^n)); polcoeff(sum(k=0, n, (log(1+2^k+1)*X)-log(1+X))^k/k!)/(1+X), n)}
CROSSREFS
Cf. A014070 (C(2^n, n)), A134174.
Sequence in context: A303159 A274387 A300988 * A114337 A317343 A307248
KEYWORD
nonn
AUTHOR
EXTENSIONS
Edited by Charles R Greathouse IV, Oct 28 2009
Terms a(13) and beyond from Andrew Howroyd, Feb 02 2020
STATUS
approved

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 August 12 23:59 EDT 2024. Contains 375113 sequences. (Running on oeis4.)