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.

A190109 Numbers with prime factorization p*q^2*r^2*s^3 (where p, q, r, s are distinct primes).

This page as a plain text file.
%I A190109 #23 Feb 16 2025 08:33:14
%S A190109 12600,17640,18900,19800,23400,26460,29400,29700,30600,31500,34200,
%T A190109 35100,38808,41400,43560,45864,45900,49500,51300,52200,55800,58212,
%U A190109 58500,59976,60840,60984,61740,62100,65340,66150,66600,67032,68796,72600,73500,73800,76500
%N A190109 Numbers with prime factorization p*q^2*r^2*s^3 (where p, q, r, s are distinct primes).
%C A190109 That is, numbers with prime signature {1,2,2,3}.
%H A190109 T. D. Noe, <a href="/A190109/b190109.txt">Table of n, a(n) for n = 1..1000</a>
%H A190109 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/PrimeSignature.html">Prime signature</a>.
%H A190109 Wikipedia, <a href="https://en.wikipedia.org/wiki/Prime_signature">Prime signature</a>.
%H A190109 Will Nicholes, <a href="http://willnicholes.com/math/primesiglist.htm">Prime Signatures</a>.
%H A190109 <a href="/index/Pri#prime_signature">Index to sequences related to prime signature</a>
%e A190109 From _Petros Hadjicostas_, Oct 26 2019: (Start)
%e A190109 a(1) = (2^3)*(3^2)*(5^2)*7 = 12600;
%e A190109 a(2) = (2^3)*(3^2)*5*(7^2) = 17640;
%e A190109 a(3) = (2^2)*(3^3)*(5^2)*7 = 18900;
%e A190109 a(4) = (2^3)*(3^2)*(5^2)*11 = 19800.
%e A190109 (End)
%t A190109 f[n_]:=Sort[Last/@FactorInteger[n]]=={1,2,2,3};Select[Range[150000],f]
%o A190109 (PARI) list(lim)=my(v=List(),t1,t2,t3); forprime(p=2,sqrtnint(lim\180, 3), t1=p^3; forprime(q=2,sqrtint(lim\(12*t1)), if(q==p, next); t2=q^2*t1; forprime(r=2,sqrtint(lim\(2*t2)), if(r==p || r==q, next); t3=r^2*t2; forprime(s=2,lim\t3, if(s==p || s==q || s==r, next); listput(v, t3*s))))); Set(v) \\ _Charles R Greathouse IV_, Aug 25 2016
%Y A190109 Cf. A190106, A190107, A190108.
%K A190109 nonn
%O A190109 1,1
%A A190109 _Vladimir Joseph Stephan Orlovsky_, May 04 2011