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.

A323644 Numbers with 3 or 4 divisors.

This page as a plain text file.
%I A323644 #24 Dec 03 2020 06:57:12
%S A323644 4,6,8,9,10,14,15,21,22,25,26,27,33,34,35,38,39,46,49,51,55,57,58,62,
%T A323644 65,69,74,77,82,85,86,87,91,93,94,95,106,111,115,118,119,121,122,123,
%U A323644 125,129,133,134,141,142,143,145,146,155,158,159,161,166,169,177,178,183,185,187,194,201,202,203,205
%N A323644 Numbers with 3 or 4 divisors.
%C A323644 Also numbers k such that the noncentral divisors of k are 1 and k.
%C A323644 Also numbers which are either semiprimes (A001358) or the cube of a prime (A030078). In other words: numbers which are either the product of two distinct primes (A006881) or the square of a prime (A001248) or the cube of a prime (A030078).
%H A323644 Amiram Eldar, <a href="/A323644/b323644.txt">Table of n, a(n) for n = 1..10000</a>
%e A323644 4 is in the sequence because 4 has three divisors, they are 1, 2, 4. On the other hand, the noncentral divisors of 4 are 1 and 4, in accordance with the first comment.
%e A323644 6 is in the sequence because 6 has four divisors, they are 1, 2, 3, 6. On the other hand, the noncentral divisors of 6 are 1 and 6, in accordance with the first comment.
%t A323644 Select[Range[200], MemberQ[{3, 4}, DivisorSigma[0, #]] &] (* _Amiram Eldar_, Dec 03 2020 *)
%o A323644 (PARI) isok(n) = my(nd=numdiv(n)); (nd==3) || (nd==4); \\ _Michel Marcus_, Feb 26 2019
%Y A323644 Union of A001248 and A030513.
%Y A323644 Cf. A001358, A006881, A030078, A161840, A323643.
%K A323644 nonn,easy
%O A323644 1,1
%A A323644 _Omar E. Pol_, Feb 26 2019