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.

A078819 a(n) = 140*C(2n,n)/(n+4).

Original entry on oeis.org

35, 56, 140, 400, 1225, 3920, 12936, 43680, 150150, 523600, 1847560, 6584032, 23661365, 85652000, 312018000, 1142971200, 4207562730, 15557374800, 57750861000, 215145084000, 804104751450, 3014244096864, 11329763650800, 42691863032000, 161238018415500, 610258100044320
Offset: 0

Views

Author

Henry Bottomley, Dec 07 2002

Keywords

Examples

			a(5)=140*C(10,5)/9=3920
		

Crossrefs

Programs

  • Mathematica
    Table[140*Binomial[2*n, n]/(n + 4), {n, 0, 30}] (* Amiram Eldar, Feb 16 2023 *)

Formula

D-finite with recurrence a(n) = a(n-1)*(4n^2+10n-6)/(n^2+4n) = A078817(n, 3) = 7*A078820(n)/(2n+1) = 140*A000984(n)/(n+4).
From Amiram Eldar, Feb 16 2023: (Start)
Sum_{n>=0} 1/a(n) = Pi/(126*sqrt(3)) + 3/70.
Sum_{n>=0} (-1)^n/a(n) = 37/1750 - 3*log(phi)/(125*sqrt(5)), where phi is the golden ratio (A001622). (End)