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.

A167867 a(n) = 2^n * Sum_{k=0..n} binomial(2*k,k)^3 / 2^k.

Original entry on oeis.org

1, 10, 236, 8472, 359944, 16722896, 822334816, 42068907200, 2215884717400, 119364801362800, 6545334930678816, 364137834051739200, 20502307365808906816, 1166063313963833813632, 66893439680369963627264
Offset: 0

Views

Author

Alexander Adamchuk, Nov 14 2009

Keywords

Comments

The expression a(n) = B^n*Sum_{ k=0..n } binomial(2*k,k)/B^k gives A006134 for B=1, A082590 (B=2), A132310 (B=3), A002457 (B=4), A144635 (B=5), A167713 (B=16).
The expression a(n) = B^n*Sum_{ k=0..n } binomial(2*k,k)^3/B^k gives A079727 for B=1, A167867 (B=2), A167868 (B=3), A167869 (B=4), A167870 (B=16), A167871 (B=64).

Crossrefs

Programs

  • Mathematica
    Table[2^n Sum[Binomial[2k,k]^3/2^k,{k,0,n}],{n,0,30}] (* Vincenzo Librandi, Mar 26 2012 *)

Formula

a(n) = 2^n * Sum_{k=0..n} binomial(2*k,k)^3 / 2^k.
Recurrence: n^3*a(n) = 2*(33*n^3 - 48*n^2 + 24*n - 4)*a(n-1) - 16*(2*n-1)^3*a(n-2). - Vaclav Kotesovec, Aug 13 2013
a(n) ~ 2^(6*n+5)/(31*(Pi*n)^(3/2)). - Vaclav Kotesovec, Aug 13 2013

Extensions

More terms from Sean A. Irvine, Apr 27 2010