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.

Showing 1-1 of 1 results.

A293468 a(n) = Sum_{k=0..n} k!*binomial(2*n-k, n).

Original entry on oeis.org

1, 3, 11, 44, 189, 880, 4542, 26712, 182793, 1461368, 13477650, 140564536, 1627370146, 20621925504, 283161372284, 4182215376240, 66065933347425, 1111053154779720, 19814069772086730, 373435157945506680, 7415765258637418950, 154751460071567005920, 3385387828167428482020
Offset: 0

Views

Author

Ilya Gutkovskiy, Oct 09 2017

Keywords

Crossrefs

Programs

  • Maple
    seq(simplify( GAMMA(n+1/2)*4^n*hypergeom([1,1,-n],[-2*n],1)/(sqrt(Pi)*n!)),n=0..30); # Robert Israel, Oct 09 2017
  • Mathematica
    Table[Sum[k! Binomial[2 n - k, n], {k, 0, n}], {n, 0, 22}]
    Table[Sum[Gamma[k + 1] Gamma[2 n - k  + 1]/(Gamma[n + 1] Gamma[n - k + 1]), {k, 0, n}], {n, 0, 22}]
    Table[SeriesCoefficient[(1/(1 - x)^(n + 1)) 1/(1 + ContinuedFractionK[-Floor[(k + 1)/2] x, 1, {k, 1, n}]), {x, 0, n}], {n, 0, 22}]
    Table[SeriesCoefficient[(1/(1 - x)^(n + 1)) Sum[k! x^k, {k, 0, n}], {x, 0, n}], {n, 0, 22}]
    A293468[n_] := DifferenceRoot[Function[{a,k}, {(k+1)(k-n)a[k] + (k(n-2)-k^2+3n)
    a[k+1] + (k-2n) a[k+2] == 0, a[0] == 0, a[1] == Binomial[2n, n]}]][1+n];
    Table[A293468[n], {n, 0, 22}] (* Peter Luschny, Oct 09 2017 *)

Formula

a(n) = [x^n] 1/((1 - x)^(n+1)*(1 - x/(1 - x/(1 - 2*x/(1 - 2*x/(1 - 3*x/(1 - 3*x/(1 - ...)))))))), a continued fraction.
a(n) = Gamma(n+1/2)*4^n*hypergeom([1,1,-n],[-2n],1)/(sqrt(Pi)*n!). - Robert Israel, Oct 09 2017
a(n) ~ exp(1) * n!. - Vaclav Kotesovec, Oct 18 2017
Showing 1-1 of 1 results.