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.
%I A035274 #18 Dec 22 2022 08:40:19 %S A035274 1,15,375,13125,590625,32484375,2111484375,158361328125, %T A035274 13460712890625,1278767724609375,134270611083984375, %U A035274 15441120274658203125,1930140034332275390625,260568904634857177734375,37782491172054290771484375,5856286131668415069580078125 %N A035274 One fifth of deca-factorial numbers. %C A035274 a(n)= (Pochhammer(5/10,n)*10^n)/5. %H A035274 G. C. Greubel, <a href="/A035274/b035274.txt">Table of n, a(n) for n = 1..320</a> %H A035274 <a href="/index/Fa#factorial">Index entries for sequences related to factorial numbers</a>. %F A035274 5*a(n) = (10*n-5)(!^10) = Product_{j=1..n} (10*j-5). %F A035274 a(n) = 5^n*A001147(n) where A001147(n) = (2*n-1)!!. %F A035274 E.g.f.: (-1 + (1-10*x)^(-1/2))/5. %F A035274 a(n) = (Pochhammer(5/10,n)*10^n)/5. %F A035274 Sum_{n>=1} 1/a(n) = exp(1/10)*sqrt(5*Pi/2)*erf(1/sqrt(10)), where erf is the error function. - _Amiram Eldar_, Dec 22 2022 %p A035274 seq( mul(10*j-5, j=1..n)/5, n=1..20); # _G. C. Greubel_, Nov 11 2019 %t A035274 Table[10^n*Pochhammer[5/10, n]/5, {n,20}] (* _G. C. Greubel_, Nov 11 2019 *) %o A035274 (PARI) vector(20, n, prod(j=1,n, 10*j-5)/5 ) \\ _G. C. Greubel_, Nov 11 2019 %o A035274 (Magma) [(&*[10*j-5: j in [1..n]])/5: n in [1..20]]; // _G. C. Greubel_, Nov 11 2019 %o A035274 (Sage) [product( (10*j-5) for j in (1..n))/5 for n in (1..20)] # _G. C. Greubel_, Nov 11 2019 %o A035274 (GAP) List([1..20], n-> Product([1..n], j-> 10*j-5)/5 ); # _G. C. Greubel_, Nov 11 2019 %Y A035274 Cf. A001147, A035272, A035273, A035274, A035275, A035276, A035277, A035278, A035279, A045757. %K A035274 easy,nonn %O A035274 1,2 %A A035274 _Wolfdieter Lang_