cp's OEIS Frontend

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.

A361761 a(n) = Product_{i=prime(n)..prime(n+1)} i.

This page as a plain text file.
%I A361761 #25 Apr 16 2023 15:55:31
%S A361761 6,60,210,55440,1716,742560,5814,4037880,7866331200,26970,51889178880,
%T A361761 89927760,74046,184072680,776881123200,1719393207840,215940,
%U A361761 4383026968320,1562389080,373176,14609718723600,3484127520,34726953602880,518607878946393600,9505049400,1061106
%N A361761 a(n) = Product_{i=prime(n)..prime(n+1)} i.
%H A361761 Winston de Greef, <a href="/A361761/b361761.txt">Table of n, a(n) for n = 1..10000</a>
%F A361761 a(n) = A006094(n)*A061214(n).
%o A361761 (Python)
%o A361761 from sympy import prod, sieve
%o A361761 def A361761(n): return prod(range(sieve[n],sieve[n+1]+1))
%o A361761 (PARI) a(n) = my(x=1); for(i=prime(n), prime(n+1), x*=i); x; \\ _Michel Marcus_, Mar 28 2023
%Y A361761 Cf. A006094, A061214, A072472, A112231, A361760.
%K A361761 nonn
%O A361761 1,1
%A A361761 _Karl-Heinz Hofmann_, Mar 23 2023