A288876 a(n) = binomial(n+4, n)^2. Square of the fifth diagonal sequence of A007318 (Pascal). Fifth diagonal sequence of A008459.
1, 25, 225, 1225, 4900, 15876, 44100, 108900, 245025, 511225, 1002001, 1863225, 3312400, 5664400, 9363600, 15023376, 23474025, 35820225, 53509225, 78411025, 112911876, 160022500, 223502500, 308002500, 419225625, 564110001, 751034025, 990046225, 1293121600, 1674446400, 2150733376
Offset: 0
Crossrefs
Programs
-
Magma
[Binomial(n+4, n)^2: n in [0..30]]; // Vincenzo Librandi, Aug 02 2017
-
Mathematica
Table[Binomial[n + 4, n]^2, {n, 0, 30}] (* Michael De Vlieger, Jul 30 2017 *)
-
PARI
a(n) = binomial(n+4, n)^2 \\ Felix Fröhlich, Jul 31 2017
Formula
a(n) = binomial(n+4, n)^2, n >= 0.
O.g.f.: (1 + 16*x + 36*x^2 + 16*x^3 + x^4)/(1 - x)^9. (See a comment above and row n=4 of A008459.)
E.g.f: exp(x)*(1 + 24*x + 176*x^2/2! + 624*x^3/3! + 1251*x^4/4!+ 1500*x^5/5!+ 1070*x^6/6! + 420*x^7/7! + 70*x^8/8!), computed from the o.g.f with the formulas (23) - (25) of the W. Lang link given in A060187.
From Amiram Eldar, Sep 20 2022: (Start)
Sum_{n>=0} 1/a(n) = 160*Pi^2/3 - 1576/3.
Sum_{n>=0} (-1)^n/a(n) = 512*log(2)/3 - 352/3. (End)
Comments