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.

A344314 Number k such that k and k+1 have the same number of nonunitary divisors (A048105).

This page as a plain text file.
%I A344314 #7 May 16 2021 02:41:27
%S A344314 1,2,5,6,10,13,14,21,22,27,29,30,33,34,37,38,41,42,44,46,57,58,61,65,
%T A344314 66,69,70,73,75,77,78,82,85,86,93,94,98,101,102,105,106,109,110,113,
%U A344314 114,116,118,122,124,129,130,133,135,137,138,141,142,145,147,154,157
%N A344314 Number k such that k and k+1 have the same number of nonunitary divisors (A048105).
%H A344314 Amiram Eldar, <a href="/A344314/b344314.txt">Table of n, a(n) for n = 1..10000</a>
%e A344314 1 is a term since A048105(1) = A048105(2) = 0.
%e A344314 27 is a term since A048105(27) = A048105(28) = 2.
%t A344314 nd[n_] := DivisorSigma[0, n] - 2^PrimeNu[n]; Select[Range[200], nd[#] == nd[# + 1] &]
%Y A344314 Cf. A048105, A064115, A335328, A344315.
%Y A344314 Similar sequences: A005237, A006049, A343819, A344312, A344313.
%K A344314 nonn
%O A344314 1,2
%A A344314 _Amiram Eldar_, May 14 2021