A276482 a(n) = 5^n*Gamma(n+1/5)*Gamma(n+1)/Gamma(1/5).
1, 1, 12, 396, 25344, 2661120, 415134720, 90084234240, 25944259461120, 9573431741153280, 4403778600930508800, 2470519795122015436800, 1660189302321994373529600, 1316530116741341538208972800, 1216473827868999581305090867200, 1295544626680484554089921773568000
Offset: 0
Links
- Robert Israel, Table of n, a(n) for n = 0..220
- Daniel Dockery, Polygorials, Special "Factorials" of Polygonal Numbers, preprint, 2003.
- Index entries for sequences related to factorial numbers
Crossrefs
Programs
-
Maple
seq(mul(k*(5*k-4),k=1..n), n=0..20); # Robert Israel, Sep 18 2016
-
Mathematica
FullSimplify[Table[5^n Gamma[n + 1/5] (Gamma[n + 1]/Gamma[1/5]), {n, 0, 15}]] polygorial[k_, n_] := FullSimplify[ n!/2^n (k -2)^n*Pochhammer[2/(k -2),n]]; Array[polygorial[12, #] &, 16, 0] (* Robert G. Wilson v, Dec 13 2016 *)
-
PARI
a(n) = prod(k=1, n, k*(5*k - 4)); \\ Michel Marcus, Sep 06 2016
Comments