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.

A065735 Largest square <= product of first n primes.

This page as a plain text file.
%I A065735 #11 Jan 13 2024 15:21:05
%S A065735 1,4,25,196,2304,29929,509796,9696996,223084096,6469628356,
%T A065735 200559769921,7420737154609,304250260158441,13082761295250201,
%U A065735 614889781233144561,32589158470911505225,1922760350143213168900
%N A065735 Largest square <= product of first n primes.
%H A065735 Harry J. Smith, <a href="/A065735/b065735.txt">Table of n, a(n) for n = 1..100</a>
%F A065735 a(n) = A048760(A002110(n)).
%t A065735 Floor[Sqrt[#]]^2&/@FoldList[Times,Prime[Range[20]]] (* _Harvey P. Dale_, Jan 13 2024 *)
%o A065735 (PARI) { m=1; for (n=1, 100, m*=prime(n); a=sqrtint(m)^2; write("b065735.txt", n, " ", a) ) } \\ _Harry J. Smith_, Oct 28 2009
%Y A065735 Cf. A048760, A002110, A065730-A065741.
%K A065735 easy,nonn
%O A065735 1,2
%A A065735 _Labos Elemer_, Nov 15 2001