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 A035278 #17 Dec 22 2022 04:15:42 %S A035278 1,19,551,21489,1052961,62124699,4286604231,338641734249, %T A035278 30139114348161,2983772320467939,325231182931005351, %U A035278 38702510768789636769,4992623889173863143201,693974720595166976904939,103402233368679879558835911,16440955105620100849854909849 %N A035278 One ninth of deca-factorial numbers. %H A035278 G. C. Greubel, <a href="/A035278/b035278.txt">Table of n, a(n) for n = 1..320</a> %H A035278 <a href="/index/Fa#factorial">Index entries for sequences related to factorial numbers</a>. %F A035278 9*a(n) = (10*n-1)(!^10) = Product_{j=1..n} (10*j-1). %F A035278 E.g.f.: (-1+(1-10*x)^(-9/10))/9. %F A035278 a(n) = (Pochhammer(9/10,n) * 10^n)/9. %F A035278 Sum_{n>=1} 1/a(n) = 9*(e/10)^(1/10)*(Gamma(9/10) - Gamma(9/10, 1/10)). - _Amiram Eldar_, Dec 22 2022 %p A035278 seq( mul(10*j-1, j=1..n)/9, n=1..20); # _G. C. Greubel_, Nov 11 2019 %t A035278 Table[10^n*Pochhammer[9/10, n]/9, {n, 20}] (* _G. C. Greubel_, Nov 11 2019 *) %o A035278 (PARI) vector(20, n, prod(j=1,n, 10*j-1)/9 ) \\ _G. C. Greubel_, Nov 11 2019 %o A035278 (Magma) [(&*[10*j-1: j in [1..n]])/9: n in [1..20]]; // _G. C. Greubel_, Nov 11 2019 %o A035278 (Sage) [product( (10*j-1) for j in (1..n))/9 for n in (1..20)] # _G. C. Greubel_, Nov 11 2019 %o A035278 (GAP) List([1..20], n-> Product([1..n], j-> 10*j-1)/9 ); # _G. C. Greubel_, Nov 11 2019 %Y A035278 Cf. A045757, A035265, A035272, A035273, A035274, A035275, A035276, A035277, A035278, A035279. %K A035278 easy,nonn %O A035278 1,2 %A A035278 _Wolfdieter Lang_