[go: up one dir, main page]

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!)
A136557 a(n) = Sum_{k=0..n} binomial(2^k + n-k-1, k). 3
1, 2, 6, 45, 1436, 171836, 68149425, 89431630740, 396956313475102, 6099399658235428041, 331007760926212498510464, 64484289650612910347505873728, 45677712418497545460138258802186905 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
Equals antidiagonal sums of square array A136555.
G.f.: A(x) = Sum_{n>=0} (1+2^n*x)^-1 * (1-x-2^n*x^2)^-1 * log(1+2^n*x)^n / n!.
a(n) ~ 2^(n^2) / n!. - Vaclav Kotesovec, Jul 02 2016
MAPLE
A136557:= n-> add(binomial(2^k +n-k-1, k), k=0..n); seq(A136557(n), n=0..20); # G. C. Greubel, Mar 15 2021
MATHEMATICA
Table[Sum[Binomial[2^k+n-k-1, k], {k, 0, n}], {n, 0, 15}] (* Vaclav Kotesovec, Jul 02 2016 *)
PROG
(PARI) a(n)=sum(k=0, n, binomial(2^k+n-k-1, k))
(PARI) /* As coefficient of x^n in the g.f.: */ {a(n)=polcoeff(sum(i=0, n, ((1+2^i*x+x*O(x^n))*(1-x-2^i*x^2))^-1*log(1+2^i*x+x*O(x^n))^i/i!), n)}
(Sage) [sum(binomial(2^k +n-k-1, k) for k in (0..n)) for n in (0..20)] # G. C. Greubel, Mar 15 2021
(Magma) [(&+[Binomial(2^k +n-k-1, k): k in [0..n]]): n in [0..20]]; // G. C. Greubel, Mar 15 2021
CROSSREFS
Sequence in context: A359659 A370818 A367916 * A092662 A371341 A052811
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 07 2008
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 29 17:19 EDT 2024. Contains 375518 sequences. (Running on oeis4.)