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 A350486 #42 Apr 02 2025 09:43:32 %S A350486 6,10,14,15,21,22,26,33,34,35,38,39,46,51,55,57,58,62,65,69,74,77,82, %T A350486 85,86,87,91,93,94,95,106,111,115,118,119,122,123,129,133,134,141,142, %U A350486 143,145,146,155,158,159,161,166,177,178,180,183,185,187,192,194 %N A350486 Numbers that have an equal number of even- and odd-length unordered factorizations and also an equal number of even- and odd-length unordered factorizations into distinct factors. %C A350486 First differs from A006881 at a(53) = 180. %C A350486 By length, we mean the number of factors in a particular factorization. %C A350486 Intersection of A319240 (factors are not necessarily distinct) and A319238 (factors are distinct). %C A350486 Numbers k such that A316441(k) = A114592(k) = 0. %C A350486 There are infinitely many terms in this sequence since all squarefree semiprimes (listed in A006881) are always such numbers. %C A350486 There are no terms of the form p^k with p prime (listed in A000961). %C A350486 Out of all numbers of the form p*q^k, p and q prime, only the numbers of the form p*q (A006881) and p*q^6 (A189987) are terms. %C A350486 Similar methods can be applied to all prime signatures. %H A350486 Leonhard Euler, <a href="https://arxiv.org/abs/math/0505373">On the remarkable properties of the pentagonal numbers</a>, arXiv:math/0505373 [math.HO], 2005. %H A350486 Leonhard Euler, <a href="http://math.dartmouth.edu/~euler/pages/E542.html">De mirabilibus proprietatibus numerorum pentagonalium</a>, par. 2 %H A350486 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/PentagonalNumberTheorem.html">Pentagonal Number Theorem</a> %H A350486 Wikipedia, <a href="http://www.wikipedia.org/wiki/Pentagonal number theorem">Pentagonal number theorem</a> %e A350486 6=2*3 (unrestricted) has an equal number (1) of even-length factorizations and odd-length factorizations, and 6=2*3 (distinct) has an equal number (1) of even-length factorizations and odd-length factorizations. %t A350486 facs[n_] := If[n <= 1, {{}}, Join @@ Table[Map[Prepend[#, d] &, Select[facs[n/d], Min @@ # >= d &]], {d, Rest[Divisors[n]]}]]; Intersection @@ First@Flatten[Position[#, 0] & /@ Transpose@Table[Sum[(-1)^Length[f], {f, #}] & /@ {facs[n], Select[facs[n], UnsameQ @@ # &]}, {n, #1, #2}], {3}]&[1,194] (* _Robert P. P. McKone_, Jan 05 2022, from _Gus Wiseman_ in A319238 and A319240 *) %Y A350486 Cf. A006881, A114592, A189987, A316441, A319240, A319238. %K A350486 nonn,easy %O A350486 1,1 %A A350486 _Tian Vlasic_, Jan 01 2022