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 A165457 #25 Sep 08 2022 08:45:47 %S A165457 1,10,280,15120,1330560,172972800,31135104000,7410154752000, %T A165457 2252687044608000,851515702861824000,391697223316439040000, %U A165457 215433472824041472000000,139600890389978873856000000 %N A165457 a(n) = (2*n+1)!*(2*n+3)/3. %H A165457 G. C. Greubel, <a href="/A165457/b165457.txt">Table of n, a(n) for n = 0..223</a> %F A165457 a(n) = 2*n*(2*n+3)*a(n-1). %F A165457 Sum_{k>=0} 1/a(k) = 3/e = A135003. %F A165457 G.f.: 3F0(1,1,5/2;;4x). - _R. J. Mathar_, Oct 15 2009 %F A165457 Sum_{k>=0} (-1)^k/a(k) = 3*(sin(1)-cos(1)) = (-3)*A143624. - _Amiram Eldar_, Apr 12 2021 %p A165457 seq(factorial(2*n+1)*(2*n+3)/3,n=0..12); # _Muniru A Asiru_, Oct 21 2018 %t A165457 Table[(2*n + 1)!*(2*n + 3)/3, {n, 0, 30}] (* _G. C. Greubel_, Oct 20 2018 *) %o A165457 (PARI) a(n)=(2*n+1)!*(2*n+3)/3 %o A165457 (Magma) [Factorial(2*n+1)*(2*n+3)/3: n in [0..30]]; // _G. C. Greubel_, Oct 20 2018 %o A165457 (GAP) List([0..12],n->Factorial(2*n+1)*(2*n+3)/3); # _Muniru A Asiru_, Oct 21 2018 %o A165457 (Python) %o A165457 import math %o A165457 for n in range(0, 12): print(int(math.factorial(2*n+1)*(2*n+3)/3), end=', ') # _Stefano Spezia_, Oct 21 2018 %Y A165457 Cf. A133942, A143624. %Y A165457 Cf. A135003. [_Jaume Oliver Lafont_, Oct 03 2009] %K A165457 nonn %O A165457 0,2 %A A165457 _Jaume Oliver Lafont_, Sep 20 2009 %E A165457 frac keyword removed by _Jaume Oliver Lafont_, Nov 02 2009