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 A034833 #42 Dec 20 2022 03:51:31 %S A034833 1,13,260,7020,238680,9785880,469722240,25834723200,1601752838400, %T A034833 110520945849600,8399591884569600,697166126419276800, %U A034833 62744951377734912000,6086260283640286464000,632971069498589792256000,70259788714343466940416000,8290655068292529098969088000 %N A034833 a(n) = n-th sept-factorial number divided by 6. %H A034833 Harvey P. Dale, <a href="/A034833/b034833.txt">Table of n, a(n) for n = 1..339</a> %H A034833 <a href="/index/Fa#factorial">Index entries for sequences related to factorial numbers</a>. %F A034833 a(n) = A049209(n)/6; %F A034833 a(n) = (7*n-1)(!^7)/6; %F A034833 a(n) = (1/6)*Product_{j=1..n} (7*j-1); %F A034833 a(n) = (1/6)*(7*n)! / (7^n * n! * A045754(n) * 2*A034829(n) * 3*A034830(n) * 4*A034831(n) * 5*A034832(n)). %F A034833 E.g.f.: (-1 + (1-7*x)^(-6/7))/6. %F A034833 Sum_{n>=1} 1/a(n) = 6*(e/7)^(1/7)*(Gamma(6/7) - Gamma(6/7, 1/7)). - _Amiram Eldar_, Dec 20 2022 %t A034833 FoldList[Times,1,Rest[7*Range[20]-1]] (* _Harvey P. Dale_, Dec 15 2014 *) %o A034833 (PARI) my(x='x+('x^30)); Vec(serlaplace((-1 + (1-7*x)^(-6/7))/6)) \\ _G. C. Greubel_, Feb 22 2018 %o A034833 (Magma) [(&*[(7*k-1): k in [1..n]])/6: n in [1..30]]; // _G. C. Greubel_, Feb 24 2018 %Y A034833 Cf. A049209, A045754, A034829, A034830, A034831, A034832, A034834. %K A034833 easy,nonn %O A034833 1,2 %A A034833 _Wolfdieter Lang_