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.

A383573 a(n) = Sum_{k=0..floor(n/2)} binomial(n-k,k) * binomial(2*(n-2*k),n-2*k).

Original entry on oeis.org

1, 2, 7, 24, 89, 338, 1311, 5152, 20449, 81778, 328999, 1330008, 5398265, 21984610, 89791103, 367643776, 1508560257, 6201927074, 25540266503, 105336838616, 435035342553, 1798875915826, 7446653956895, 30857577536800, 127987031688161, 531301328367762, 2207281722474919
Offset: 0

Views

Author

Seiichi Manyama, Apr 30 2025

Keywords

Crossrefs

Programs

  • Magma
    [&+[Binomial(n-k, k) * Binomial(2*(n-2*k), n-2*k): k in [0..Floor(n div 2)]]: n in [0..35]]; // Vincenzo Librandi, May 03 2025
  • Mathematica
    Table[Sum[Binomial[n-k,k]* Binomial[2*(n-2*k),n-2*k],{k,0,Floor[n/2]}],{n,0,30}] (* Vincenzo Librandi, May 03 2025 *)
  • PARI
    a(n) = sum(k=0, n\2, binomial(n-k, k)*binomial(2*(n-2*k), n-2*k));
    

Formula

G.f.: 1/sqrt((1 - x^2) * (1 - x^2 - 4*x)).
a(n) ~ phi^(3*n + 3) / (2^(3/2) * 5^(1/4) * sqrt(Pi*n)), where phi = A001622 is the golden ratio. - Vaclav Kotesovec, May 01 2025