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 A361760 #27 Apr 16 2023 15:55:35 %S A361760 2,12,30,5040,132,43680,306,175560,271252800,870,1402410240,2193360, %T A361760 1722,3916440,14658134400,29142257760,3540,65418312960,22005480,5112, %U A361760 184933148400,41977440,390190489920,5346472978828800,94109400,10302,119224560,11556,149059680,120140035685601494718355200000,272613120 %N A361760 a(n) = Product_{i=prime(n)..prime(n+1)-1} i. %H A361760 Winston de Greef, <a href="/A361760/b361760.txt">Table of n, a(n) for n = 1..10000</a> %F A361760 a(n) = A000040(n)*A061214(n). %o A361760 (Python) %o A361760 from sympy import prod, sieve %o A361760 def A361760(n): return prod(range(sieve[n], sieve[n+1])) %o A361760 (PARI) a(n) = my(x=1); for(i=prime(n), prime(n+1)-1, x*=i); x; \\ _Michel Marcus_, Mar 28 2023 %Y A361760 Cf. A061214, A072472, A361761. %K A361760 nonn %O A361760 1,1 %A A361760 _Karl-Heinz Hofmann_, Mar 23 2023